Adding data from one form to another using command buttons

G

Guest

Im trying to get a command button which will, when pressed, copy information
from a certain field in one form, and then paste it into a different form in
the same project.

Any help will be greatly appreciated. My limited knowledge of visual basic
and expression building is holding me back.

Thanks in advance
 
S

storrboy

The basic statement in the Click event might look like

Forms("[TargetFormName]").ControlName =
Forms("[SourceFormName]").ControlName

Change form and control names as needed.
 

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