M mattc66 via AccessMonster.com Mar 23, 2007 #1 How do I copy the value of a field from one form to another form that is not part of a subform relationship?
How do I copy the value of a field from one form to another form that is not part of a subform relationship?
S Stefan Hoffmann Mar 23, 2007 #2 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? Click to expand... 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 <--
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? Click to expand... 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 <--