Make form fill whole screen

  • Thread starter Thread starter Rick
  • Start date Start date
R

Rick

How do I make a form fill the entire screen? - "Full
screen" mode - no command bars, no title bar for access,
no title bar on the form itself, no Windows bar at the
bottom - just all screen area used for the form!
 
1. Put a DoCmd.Maximize in the Form's Open event.
2. Set the Form to be Pop Up = Yes and Modal = Yes using the form's properties.
3. Save the form, close, and then test.
 
Thanks - Jeff

That brings me close.... more wants more...can I avoid the
title bar on my form?

And can I get rid of the windows bar as well?
 
1. Make sure you have an Exit button on the form that will either close the form and/or close the
database.
2. Test the button before continuing.
3. Set the form's Border Style property to None.
4. Set the form's Control Box property to No
5. Save the form, close, and then test
 
can I avoid the title bar on my form? And can I get rid of the windows bar as
well?
============================

Check out the "border style" property on the format tab of the form's property
window.

Betsy
 
Back
Top