when I click on the button1 on the form1 then I am able to go to form2 but not getting the value in the txtform2 text box.


Here is the code which i am tring
under form1:

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim frm As New Form2()
frm.Show()
End Sub


under form2:

Private Sub Form2_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Dim frm1 As New Form1()
txtForm2.Text = frm1.txtForm1.Text
End Sub



Reason expected !!