Maximise Window On Startup

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,
Is there a way to auto-maximise the switchboard on startup? at the minute it
opens on a small window.

Many Thanks
 
In your switchboard's OnOpen event procedure use:
DoCmd.Maximize

If you want to restore window size, in an appropriate event use:
DoCmd.Restore

Steve
 
Perfect. Thanks Very much Steve :)

SteveM said:
In your switchboard's OnOpen event procedure use:
DoCmd.Maximize

If you want to restore window size, in an appropriate event use:
DoCmd.Restore

Steve
 
I prefer the Form Activate event.
The Open fires only once, but the Activate event fires each time the form
receives the focus. This is particularly true for the switchboard which is
activated and deactivated frequently during a session.
 
Back
Top