R
Rob Nicholson
I'm opening a form using in Access 2007 using:
DoCmd.OpenForm "MyForm",,,"RecordID=100"
(The 100 actually comes from a combo)
This works fine but I want to allow the user to open *another* instance of
the form at the same time (allowing them to switch between using Windows
menu) but when a second:
DoCmd.OpenForm "MyForm",,,"RecordID=101"
is executed, the *same* form is re-used. How do you force Access to open a
new instanace of a form?
Thanks, Rob.
DoCmd.OpenForm "MyForm",,,"RecordID=100"
(The 100 actually comes from a combo)
This works fine but I want to allow the user to open *another* instance of
the form at the same time (allowing them to switch between using Windows
menu) but when a second:
DoCmd.OpenForm "MyForm",,,"RecordID=101"
is executed, the *same* form is re-used. How do you force Access to open a
new instanace of a form?
Thanks, Rob.