[Solved]Linking form 1 with form2
Hi, So I have two forms. In form 1, I have a textbox1 and in form two, I have a textbox2 and a button1. Now what I want to do is, write in textbox2 (That is in FORM2) and when I press the button, it just go to textbox1 (That is in FORM1)
Any help would be appreciated
Thanks
Re: Linking form 1 with form2
try something like,
form1.textbox1.text = me.textbox2.text
Re: Linking form 1 with form2
Hi.
Im assuming that you mean you want to send the text entered in textbox2 in Form2 to the textbox1 in Form1.
Vb Code:
Private Sub Button1_click()
Form1.Textbox1.Text = Textbox2.Text
End Sub
Re: Linking form 1 with form2