G
Guest
Hi All,
I have 2 forms in a project. I enter some values in some text boxes on the first form then open the second form using the following VB code:
Dim frmForm2 As Form2
frmForm2 = New Form2
frmForm2.Show()
Within a sub on the second form I need to get some of the values off of the first form (that's still open and visible).
It seems simple but I can't find the correct syntax anywhere in the help. I'm familiar with how to do this in VB6 but can't figure it out in VB.Net.
Thanks, MBP
I have 2 forms in a project. I enter some values in some text boxes on the first form then open the second form using the following VB code:
Dim frmForm2 As Form2
frmForm2 = New Form2
frmForm2.Show()
Within a sub on the second form I need to get some of the values off of the first form (that's still open and visible).
It seems simple but I can't find the correct syntax anywhere in the help. I'm familiar with how to do this in VB6 but can't figure it out in VB.Net.
Thanks, MBP