Open the form in Design mode, and look at its Properties window (you can
toggle the window on and off under the View menu). Look on the Event tab:
one of the entries will be "On Load". If it's blank beside that, put [Event
Procedure] (with the square brackets) in there. Click on the ellipses (...)
to the right, and that will take you to the event code. If you added the
event code, all you should see is:
Private Sub Form_Load()
End Sub
Put the line of code Allen suggest into that:
Private Sub Form_Load()
DoCmd.Maximize
End Sub
--
Doug Steele, Microsoft Access MVP
(no e-mails, please!)
Sue Compelling said:
Thanks for being so prompt Allen - ummm - how do I find the "Load event of
the form" [New User I'm afraid]
--
Sue Compelling
Allen Browne said:
Add:
DoCmd.Maximize
to the Load event of the form.
--
Allen Browne - Microsoft MVP. Perth, Western Australia.
Reply to group, rather than allenbrowne at mvps dot org.
I have the switchboard form opening up by default by going through the
Tools
/ Start Up menu - though it always opens minimised, forcing the agents to
manually maximise the screen each morning. How do I get it to open up
maximised by default?
Thanks in advance