Put the code in the button that the user would press to load the second form:
Code:
Private Sub Button_Click()
    
    Load Form2

    Form2.Text1 = Form1.Text1
    
    Form2.Show
    
End Sub