ACC: How to Minimize, Maximize, and Restore MS Access 95/97Last reviewed: August 28, 1997Article ID: Q148834 |
The information in this article applies to:
SUMMARYAdvanced: Requires expert coding, interoperability, and multiuser skills. Microsoft Access does not provide a function to maximize, minimize, and restore Microsoft Access from a module or macro. This article demonstrates how to use Microsoft Windows API calls in code to maximize, minimize, and restore Microsoft Access. NOTE: In Microsoft Access 97, you can use the RunCommand to maximize, minimize and restore Microsoft Access. For example, you can use the following methods:
DoCmd.RunCommand acCmdAppMaximize DoCmd.RunCommand acCmdAppMinimize DoCmd.RunCommand acCmdAppRestoreIf you are using Automation, you can use the following methods:
application.DoCmd.RunCommand acCmdAppMaximize application.DoCmd.RunCommand acCmdAppMinimize application.DoCmd.RunCommand acCmdAppRestoreThis article assumes that you are familiar with Visual Basic for Applications and with creating Microsoft Access applications using the programming tools provided with Microsoft Access. For more information about Visual Basic for Applications, please refer to your version of the "Building Applications with Microsoft Access" manual.
MORE INFORMATIONOnce you define the following sample functions in a module, you can use them in macros as RunCode actions. To do so, follow these steps:
REFERENCESFor an example of how to minimize, maximize, and restore Microsoft Access version 2.0, please see the following article in the Microsoft Knowledge Base:
ARTICLE-ID: Q89597 TITLE: ACC2: How to Minimize, Maximize, and Restore MS AccessMicrosoft Access, "Building Applications with Microsoft Access 97," Chapter 12, "Using Library Databases and Dynamic-Link Libraries" For more information about hWndAccessApp, search the Help Index for "hWndAccessApp," or ask the Microsoft Access 97 Office Assistant.
|
Additional query words: hWND Win32 API
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |