copying from a textbox

G

Guest

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.
 
G

Guest

Hi,
sure...try:

=Forms!Form1.YourControl

Or in code:

Me.YourControl = Forms!Form1.YourControl

HTH
Good luck
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top