Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
Home
Discussion GroupsFormsForms ProgrammingQueriesModules / DAO / VBAReports / PrintingMacrosDatabase DesignSecurityConversionImporting / LinkingSQL Server / ADPMultiuser / NetworkingReplicationSetup / ConfigurationDeveloper ToolkitsActiveX ControlsNew UsersGeneral 1General 2
Access DirectoryToolsTutorialsUser Groups
Related Topics
SQL ServerOther DB ProductsMS OfficeMore Topics ...

MS Access Forum / Forms Programming / July 2005

Tip: Looking for answers? Try searching our database.

Maximize App from taskbar

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
David W - 10 Jul 2005 21:00 GMT
How do you through code min or max the application to/from the menu bar?

I tried the docmd and all that it affects is the form not the application, I
need too through code minimze the app to the taskbar, then through code at a
later time maximize it from an on timer event.
Is this possible?
Brendan Reynolds - 10 Jul 2005 22:44 GMT
Option Compare Database
Option Explicit

Private Sub Command0_Click()

   Me.TimerInterval = 1000
   DoCmd.RunCommand acCmdAppMinimize

End Sub

Private Sub Form_Timer()

   Me.TimerInterval = 0
   DoCmd.RunCommand acCmdAppMaximize

End Sub

Signature

Brendan Reynolds (MVP)

> How do you through code min or max the application to/from the menu bar?
>
> I tried the docmd and all that it affects is the form not the application,
> I need too through code minimze the app to the taskbar, then through code
> at a later time maximize it from an on timer event.
> Is this possible?
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.