Parameters from popup form

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I need to launch a popup form that will contain a simple
control - such as a combo box. I want to make a selection
in control, then close form - and, "this is where I need
help", pass back to main form the value selected from
control on popup from. Best methods or any Microsoft
Samples I could see?

Thanks for your help,

Marcel K.
 
Marcel,
Is the main form still open when you make the selection?
If so, use something like the following in the Afterupdate
event for the field where the selection is made:

Forms![FormName]![fieldName]=Me![fieldName]

Where Me![field Name] is the field on the form your using
to make the selection.

Hope that helps!

Kevin
 
Back
Top