i find it funny that there is this difference of vb6 from .net.In vb6 i can easily get the data key in by user to be shown on the next form....eg: lblxxx.caption=form1.txtYYY.text

where lblxxx is from form2 .....

However in .net this dont apply...and i have yet to find a way to do it.... i try to use :

Dim OpentheForm1 As New form1
lblxxx.caption = "Welome" & OpentheForm1.txtLogin.Text

but still don work...(can only see the welcome...) can anyone pls advice?