Ok i have just recently upgraded from vb6 to vb .net 2003. And I had no idea the coding was going to be this much different. So the problem i ran into is this:

Lets Say i have two forms (Form1 and Form2) Each with a textbox(TextBox1) on each. When i change Form2.textbox1.text i want form1.textbox1.text to change to form2.texbox1.text.

Example Code i Have In form 2:
VB Code:
  1. Private Sub TextBox1_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TextBox1.TextChanged
  2.         Dim form1 As Form1
  3.         form1.TextBox1.Text = Me.TextBox1.Text
  4.     End Sub
But when i run this it generates an error.. What do i do? Im a newb at VB .Net and it all seems so different to me than vb6.

Thanks,
Cooldude4u2no