Try:
Forms![YourFormName].[YourTextboxName] = Me.ActiveControl
in the AfterUpdate event of the second textbox.
Substitute YourFormName with the name of the first form.
Substitute YourTextboxName with the name of the first textbox.
Both forms will need to be open.