Adding data from one form to another using command buttons

N

NichtSoGut

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