Maximising On Startup

  • Thread starter Thread starter Dave B
  • Start date Start date
D

Dave B

Hi,

Could sum 1 pls tell me how to make a form maximised when using it on the
startup facility within database utilities. The form is my menu for
accessing the rest of the database.


Thanks in advance
Dave
 
set a macro or event procedure on the form's OnOpen event property. in a
macro, use the Maximize action. in an event procedure, use DoCmd.Maximize.

hth
 
Back
Top