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

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

Back
Top