Copy value of field to other form

  • Thread starter Thread starter mattc66 via AccessMonster.com
  • Start date Start date
M

mattc66 via AccessMonster.com

How do I copy the value of a field from one form to another form that is not
part of a subform relationship?
 
hi Matt,
How do I copy the value of a field from one form to another form that is not
part of a subform relationship?
You can access any form, if it is loaded, with

Forms("OtherForm").Form![FieldName] = Me![FieldName]

or

Forms("OtherForm").Form![FieldName] = Ctrl.Value


mfG
--> stefan <--
 
Back
Top