Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

full screen the database 1

Status
Not open for further replies.

mws5872

MIS
Aug 1, 2004
71
US
Hi everyone I just had a quick question about how to maximize my database. I want the controls to be hidden ex. file edit etc. I just want the switchboard to be full screen and the form. Can someone explain to me how you do this.(when you open the file)
 
If you want to hide the ACcess window you must design all forms as pop-ups and larger than the Access window..
 
Change the form Load event to maximize the window.

Code:
[COLOR=blue]Private Sub Form_Load()
   DoCmd.Maximize
End Sub[/color]

Then
Set the Properties of the form

Properties > Other tab

PopUp = Yes
Modal =Yes


Caution!! you must have a exit button to exit the DB sometime you have to use TaskManager to close
Regards

Zameer Abdulla
Visit Me
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top