Hi
I am importing a database, but I first need a couple of parameters from the user.
Now I write this mostly in Access VBA, since I come from programming background.
What I want to know is how can I let my code wait for the modal form to close before continueing?
Thanks
-Canderel
I am importing a database, but I first need a couple of parameters from the user.
Now I write this mostly in Access VBA, since I come from programming background.
What I want to know is how can I let my code wait for the modal form to close before continueing?
Thanks
-Canderel
PHP:
Sub ImportFoo()
'//Prepare files for import
docmd.OpenForm "frmImportParameters" '//(with modal, pop-up, etc.)
'//---- WAIT For form to close ---- THIS IS MY Question...
'//Import Code... This runs before I close (actually before the form opens about)
End Sub
Last edited: