how can i use a labels contents in the navigat control as well as code?
e.g.
wB1.Navigate("C:\Documents and Settings\" + lbluser + "\My Documents")
that would work in vb6 :s
Printable View
how can i use a labels contents in the navigat control as well as code?
e.g.
wB1.Navigate("C:\Documents and Settings\" + lbluser + "\My Documents")
that would work in vb6 :s
Probably need to use the '&' symbol and also the label has a text property which you have to specify.
& lbluser.Text &