Opening Form

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
 
F

fredg

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.
 
F

FJ Questioner

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.
 
Top