Access minimized to system tray

Novice1

Registered User.
Local time
Today, 08:46
Joined
Mar 9, 2004
Messages
385
I have a button on a form which runs a series of reports. Once the reports are run the Access database minimizes to the task bar (not system tray)

I added a line ... DoCmd.Maximize in hopes of restoring the form (no luck).

I tried adding a line to restore the form ... DoCmd.OpenForm "frmMPSAccess", acNormal. Again, no luck.

How can I restore the form?

Thanks
 
What code are you using to minimise the db? Try DoCmd.SelectObject to select the form, then run DoCmd.Maximize. If that doesn't work, do the same thing but add acCmdAppMaximize (this is a RunCommand constant) before the DoCmd.Maximize code line.
 
I guess you have used API calles
 

Users who are viewing this thread

Back
Top Bottom