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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Maximize Access application

Status
Not open for further replies.

mutidjo

MIS
Nov 29, 2001
27
0
0
US
hello,
i have a button on my main menu which is coded so that when it is clicked then it opens another access database. It does open the database, but the application is minimized and found on the bottom of the screen (taskbar?), so the use has to click on it to maximize the screen.

Has anyone run into this problem before. I just want the user to be able to click on the button, and the second Acceee mdb file to open maximized.

Any help is appreciate.

Much thanks!
 
I have had the same problem calling Access from VB. I tried using the .Maximize method. Maybe it would work in Access. (It doesn't in VB)

Ken
 
Set the Properties of the form that opens first (assuming you do launch a Form) to On Open -> DoCmd.Maximize
 
I found the following solution, hope it helps:

Dim retval As Double
retval = Shell("MSACCESS " & "[Fil path]", 3)

The "3" maximizes Access and places it in focus.

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top