I can't seem to pass values from Form1 to Form2 when i click
btnSubmit_click.

Form1:

txtName
txtAge

Form2:

Dim Form2 As New frmMain2()

strName = Form2.txtName.Text
strAge = Form2.txtAge.Text

lblName.Text = strName <- doesnt show!