Opening Form

  • Thread starter Thread starter FJ Questioner
  • Start date Start date
F

FJ Questioner

I'd like one of my forms to automatically open (full screen) whenever I open
my access file. How do I accomplish that (without resorting to VBA) ?

Thanks,

FJ
 
I'd like one of my forms to automatically open (full screen) whenever I open
my access file. How do I accomplish that (without resorting to VBA) ?

Thanks,

FJ

to have this for always open maximized, code the Form's Open event:
DoCmd.Maximize

To have this form always open when the database is first opened, click
on:
Tools + StartUp
Set this form's name in the Display Form/Page dropdown box.
 
Worked like a charm. Thanks.

fredg said:
to have this for always open maximized, code the Form's Open event:
DoCmd.Maximize

To have this form always open when the database is first opened, click
on:
Tools + StartUp
Set this form's name in the Display Form/Page dropdown box.
 
Back
Top