Hi,
In Form Load of Form2, write this code:
Me.Text1.Text = Form1.Text1.Text
(Here you have to show Form2, While Form1, is still Loaded)
OR
In Lost Focus of
Form1's Text1,
Form2.Text1.Text = Me.Text1.Text
OR
Keep a Public Variable in .bas module, populate variable in Form1's Text_lostfocus event, and Access that variable in Form's Load event
Regards
Veena