Pre-populate field on dialog form

AdamFeerst

Registered User.
Local time
Today, 10:09
Joined
Sep 21, 2015
Messages
63
How do I populate a text field on a dialog form to the value of a filed on the calling form?
 
You could make its control source equal to the field on the calling form something like:

=Forms!thenameofthecallingformname!thenameofthetextboxonthecallingform

as long as the calling form remains open
 
The dialog form can be called from different forms.
 
You could set a tempvar with the value of the text box in the calling forms' open form and retrieve it in the dialog's form load.
 

Users who are viewing this thread

Back
Top Bottom