Form Display- fill screen on opening

D

David

When a user opens the database I have the form as the only thing that comes
up- but it doesn't fill the screen - need to hit square box to expand form-
also would like if no ribbon- scroll bar etc were visable- any idea how I can
do this?
 
R

ruralguy via AccessMonster.com

Filling the screen is a matter of putting:
DoCmd.Maximize
...in the Open code event of your form.
 
J

JimBurke via AccessMonster.com

Check the form properties Scroll Bars, Record Selectors, Navigation Buttons,
etc. for things that control how the form is displayed. Don't know about the
ribbon, I'm still using Access 2000, but there may be a property for it.
 
R

ruralguy via AccessMonster.com

You might also try playing with these commands:

DoCmd.ShowToolbar “Ribbonâ€, acToolbarNo
DoCmd.ShowToolbar “Ribbonâ€, acToolbarYes
 
Top