hi i ve this code that i use to send data from from1 to from2:
MyInstanceOfForm2 = form2
MyInstanceOfForm2.Show()
MyInstanceOfForm2.Label1.Text = alt.Text
the problem is form 2 is already open, and if i run this code, it will open another copy of form2, what i need to do is to pass the info to the old form2 without closing it or opening a new one, thanks for the help!!
MyInstanceOfForm2 = form2
MyInstanceOfForm2.Show()
MyInstanceOfForm2.Label1.Text = alt.Text
the problem is form 2 is already open, and if i run this code, it will open another copy of form2, what i need to do is to pass the info to the old form2 without closing it or opening a new one, thanks for the help!!