I've created a form named Form1 which contains: 1 textbox.
a form named form2 which contains: 1 textbox, 1 command button.

and i made a copy of Form1 through the sub function below:

Sub NewForm1()
Dim NewForm1 as Form1
Set NewForm1 = new Form1
NewForm1.show
end Sub

and i want a to send a text line from Form2's textbox when pressed enter to the textbox in the form created with the above function. How do i do that?

Helps are very, very, appreciated.