R
Robert
I have two forms which are both popups. After the first one is displayed
the user clicks on the the listbox on the form and in the on click event the
second form is opened and the first form closes itself in succession..
DoCmd.OpenForm "secondform"
DoCmd.Close acForm,"firstform"
The thing is the query in the second form references the list box in the
first form for a value. So far it works fine in testing but I was concerned
whether the first form could close too fast before the second form is able
to excute its query which references the first form.
Robert
the user clicks on the the listbox on the form and in the on click event the
second form is opened and the first form closes itself in succession..
DoCmd.OpenForm "secondform"
DoCmd.Close acForm,"firstform"
The thing is the query in the second form references the list box in the
first form for a value. So far it works fine in testing but I was concerned
whether the first form could close too fast before the second form is able
to excute its query which references the first form.
Robert