copying from a textbox

F

fervet

hello,
I have 2 forms, Form1 and Form2. I would like to copy the contents from
textbox 1 located on Form1, to another textbox, texbox 2 located on Form2. Is
there a way to modify the control source on Form 2 to accomplish this?

Thank you.
 
F

freakazeud

Hi,
sure...try:

=Forms!Form1.YourControl

Or in code:

Me.YourControl = Forms!Form1.YourControl

HTH
Good luck
 
Top