Make Form Full Screen

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi

Quite a simple one that I'm stuck on. How do i make a form in Microsoft
Access 2007 full screen so the user can only see the input form i have
created for them?

Thanks

Adam
 
Adam,
If you have an icon on your desktop that opens 2007... and particular
database... you can set the RUN properties of that icon to...
Maximized
Or...
You can create a macro in your databae, named "Autoexec", that contains a
"Maximize" command. An Macro named Autroexec will always run when a
database is first opened.
I didn't test in 2007, but I would expect that those two methods haven't
changed from previous versions.
--
hth
Al Campagna
Microsoft Access MVP
http://home.comcast.net/~cccsolutions/index.html

"Find a job that you love... and you'll never work a day in your life."
 
So your saying there is no inbuilt way of making a Form full screen (as in no
tool bar at the top etc)?

Thanks

Adam
 
Adam:

It is possible (or at least it was in earlier versions; I can't be sure for
Access 2007 as I don't use it) by setting the form's Modal and Popup
properties both to True (Yes in the properties sheet) and maximizing it by
putting DoCmd.Maximize in its Open event procedure. Provided the user
doesn't need to see any other objects but the form while its open this is
OK, but it's very limiting otherwise as any objects opened from the form will
be hidden behind it and unavailable to the user. Also you'd need to include
your own navigational controls on the form as the navigation bar would not be
visible.

Ken Sheridan
Stafford, England
 
What Ken suggested works in 2003 (cool, I didn't know that could be done).
Are you using the Startup features to provide PGS?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Help With MS Access 4
full screen Forms 1
Open form 2
Access Manage Attachments linked to a SubForm 0
Positioning Windows / Window Size 3
Viewing forms on different screens 4
2007 Report Toolbars 1
form - full screen 1

Back
Top