A AdamFeerst Registered User. Local time Today, 10:09 Joined Sep 21, 2015 Messages 63 Jan 12, 2016 #1 How do I populate a text field on a dialog form to the value of a filed on the calling form?
S sneuberg AWF VIP Local time Today, 09:09 Joined Oct 17, 2014 Messages 3,506 Jan 12, 2016 #2 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
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
A AdamFeerst Registered User. Local time Today, 10:09 Joined Sep 21, 2015 Messages 63 Jan 12, 2016 #3 The dialog form can be called from different forms.
S sneuberg AWF VIP Local time Today, 09:09 Joined Oct 17, 2014 Messages 3,506 Jan 12, 2016 #4 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.
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.
A AdamFeerst Registered User. Local time Today, 10:09 Joined Sep 21, 2015 Messages 63 Jan 12, 2016 #5 Not working. Me.FileName = tFileName
S sneuberg AWF VIP Local time Today, 09:09 Joined Oct 17, 2014 Messages 3,506 Jan 12, 2016 #6 According to http://www.iaccessworld.com/how-to-set-temporary-value-tempvars/ that should be more like Me.FileName = TempVars!tFileName I suggest you take a look at that web site.
According to http://www.iaccessworld.com/how-to-set-temporary-value-tempvars/ that should be more like Me.FileName = TempVars!tFileName I suggest you take a look at that web site.