I am running a form with several related forms. To save time, I would like to load the related forms when loading the initial form. A problem that I am having is that when I load the related forms are loaded it triggers the related form's on_activate event even though I don't want to run it until that form is actually visible and has focus. I have tried opening the form hidden:
DoCmd.OpenForm ("frminvoicefinish"), , , , , acHidden
and I've tried loading the form:
load form_frminvoicefinish
but both trigger the activate event.
Am I doing something wrong, or is there another way to accomplish my objective?
Thanks.
DoCmd.OpenForm ("frminvoicefinish"), , , , , acHidden
and I've tried loading the form:
load form_frminvoicefinish
but both trigger the activate event.
Am I doing something wrong, or is there another way to accomplish my objective?
Thanks.