-
Hi everyone,
I like to check whether anyone has any idea on solving this problem of mine. I need to enter a value in the textbox (txt1) in form 1 and when I pressed next, it will proceed to form 2. What I need is that immediately when form2appears, txt1 value will appear in txt2(textbox in form2). Now what happen is that I could pass the value of txt1 to txt2, but however, the value would not appear till I double-click on txt2.
Hope that someone could kindly take the time off and advice me on what to do.
Thanks
-
try
Code:
Private Sub Command1_Click()
Form2.Text1.Text = Text1.Text
Form2.Show
End Sub
-
<?>
'form2 code
Code:
Private Sub Form_Load()
Form2.txt2 = Form1.txt1
End Sub
[Edited by HeSaidJoe on 11-28-2000 at 12:07 PM]