parameter query when form closes

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

Guest

I've got a parameter query which gets the criteria from a popup form (a name
and date) then a main form opens up using the query for data. My question
is, once the popup form has accepted the input and passed it to the query,
can you then close the popup and the info will still be in the query/form, or
do you have to leave the popup open as long as you're using the main form??
Thanx for any help...
 
I always like to create Globals to store the values particularly if I am
writing the criteria onto a report as well. Then you can just close the
criteria form and not worry about hiding it.

Ie Global strName as string

In the AfterUpdate code (for the field in the popup)
strName = me.textfieldname

Sandy
 
Back
Top