C
Clif McIrvin
I'm stymied.
I've created an 'empty' form that I want to use to effect the OnClose
behavior of another form.
The problem I'm having is that I cannot consistently make my new form
stay quietly hidden!
My intention was to make my hidden form the "Startup Options" form, and
have it's Load Procedure hide it and open the user interface form. I
quickly discovered that sometimes the form would open hidden, and
sometimes open visible and have been completely unable to discover what
the cause might be.
Form name: "Hidden Form"
Private Sub Form_Load()
Application.Echo False, "Open Database ..."
Me.Visible = False
DoCmd.OpenForm "UI Form", , , , _
acFormReadOnly
End Sub
(In the Form_Load procedure of UI Form I turn Echo back on.)
Things I have attempted:
1. Hidden Form as the Startup Form: Hidden Form opens visible on top of
UI Form.
2. Launch Hidden Form by selecting it from the database window. It opens
visible on top of UI Form.
I attempted searching newsgroups and several Access websites but have
found no solution.
Suggestions, anyone?
I've created an 'empty' form that I want to use to effect the OnClose
behavior of another form.
The problem I'm having is that I cannot consistently make my new form
stay quietly hidden!
My intention was to make my hidden form the "Startup Options" form, and
have it's Load Procedure hide it and open the user interface form. I
quickly discovered that sometimes the form would open hidden, and
sometimes open visible and have been completely unable to discover what
the cause might be.
Form name: "Hidden Form"
Private Sub Form_Load()
Application.Echo False, "Open Database ..."
Me.Visible = False
DoCmd.OpenForm "UI Form", , , , _
acFormReadOnly
End Sub
(In the Form_Load procedure of UI Form I turn Echo back on.)
Things I have attempted:
1. Hidden Form as the Startup Form: Hidden Form opens visible on top of
UI Form.
2. Launch Hidden Form by selecting it from the database window. It opens
visible on top of UI Form.
I attempted searching newsgroups and several Access websites but have
found no solution.
Suggestions, anyone?