maximise window on start

  • Thread starter Thread starter evelyn ballantyne
  • Start date Start date
E

evelyn ballantyne

i am opening my main menu form on startup, how can i
maximise this window when the programme starts please.
 
You want to do this when the form opens? Create a macro (call it
macMaximize) and put this action in it:
Action: Maximize

Then call this macro in the form's OnLoad event.
 
Another way is to create a macro called AutoExec and set the Actions to Open
the Main Menu and an Action to Maximize. Naming a macro AutoExec will
automatically execute without having to add anything to a form's OnLoad
Event.
 
Back
Top