Originally posted by lleemon
Okay, does anyone have a better answer then just copy them? Looking for a way using code, like a macro function.
This example copies the text from Text0 in Form1 to Text0 in Form2 when the user clicks on a command button.

VB Code:
  1. Private Sub Command2_Click()
  2.     Forms![Form2]!Text0 = Forms![Form1]!Text0
  3. End Sub