I have a text box (textbox1) on Form2. I would like the text in textbox1 to display in label1 on Form3, but in VB.net i have no idea how to make it to that. In VB6 all i had to do in Form3 is type:

Private Sub Form_Load()
Label1.Caption = Form2.TextBox1.Text
End Sub

How can I do that in VB.net?