Adding data from one form to another using command buttons

  • Thread starter Thread starter Guest
  • Start date Start date
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
 
The basic statement in the Click event might look like

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

Change form and control names as needed.
 
Back
Top