I need to update the label.text property on Form1 from Form2. From1 opens Form2 as follows:
Dim form2 As New Form2
form2.Show()
In form2, I try to change the label property in Form1 as follows:
form1.label.text = "test"
What exactly do I need to do so the above assignment will work?
Dim form2 As New Form2
form2.Show()
In form2, I try to change the label property in Form1 as follows:
form1.label.text = "test"
What exactly do I need to do so the above assignment will work?