ACC: How to Determine If a Specific Windows Program Is RunningLast reviewed: November 21, 1997Article ID: Q88167 |
The information in this article applies to:
SUMMARYAdvanced: Requires expert coding, interoperability, and multiuser skills. There may be times when you want only one instance of an application to run under Microsoft Windows. For example, if you add a command button to a form that starts the Windows Calculator (Calc.exe) program, the user can start many instances of Calculator. This is an inefficient use of memory and system resources. Through the use of a Windows application programming interface (API) function, Microsoft Access can determine if Calculator is already running. The API function used to determine if a specific program is running is called FindWindow(). FindWindow() returns the handle of the window whose class is given by the lpClassName parameter and whose window name (or caption) is given by the lpCaption parameter. If the returned value is zero, the application is not running. This 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. NOTE: Visual Basic for Applications is called Access Basic in Microsoft Access version 2.0. For more information about Access Basic, please refer to the "Building Applications" manual.
MORE INFORMATIONWhen a program is started from an icon or the command line, it registers the class name of its main window. The window class provides information about the name, attributes, and resources required by the program. The Microsoft Access window has a class name of "OMain." Additional command class names are provided at the end of this article. By calling FindWindow() with a combination of a specific program's class name or the title bar caption, Microsoft Access can determine whether that specific program is running. You can determine the class name of an application by using Spy.exe, which is supplied with the Microsoft Windows Software Development Kit (SDK) version 3.1. or the Microsoft Win32 SDK. If the window has a caption bar title, you can also use the title to locate the instance of the running application. This caption text is valid even when the application is minimized to an icon. The following example shows three ways to determine if the Windows Calculator is running. NOTE: You may have some Microsoft Windows API functions defined in an existing Microsoft Access library; therefore, your declarations may be duplicates. If you receive a duplicate procedure name error message, remove or comment out the declarations statement in your code.
Class Name Application ------------------------------- SciCalc CALC.EXE CalWndMain CALENDAR.EXE Cardfile CARDFILE.EXE Clipboard CLIPBOARD.EXE Clock CLOCK.EXE CtlPanelClass CONTROL.EXE XLMain EXCEL.EXE Session MS-DOS.EXE Notepad NOTEPAD.EXE pbParent PBRUSH.EXE Pif PIFEDIT.EXE PrintManager PRINTMAN.EXE Progman PROGMAN.EXE (Windows Program Manager) Recorder RECORDER.EXE Reversi REVERSI.EXE #32770 SETUP.EXE Solitaire SOL.EXE Terminal TERMINAL.EXE WFS_Frame WINFILE.EXE MW_WINHELP WINHELP.EXE #32770 WINVER.EXE OpusApp WINWORD.EXE MSWRITE_MENU WRITE.EXE Windows 95 Only: MSPaintApp PBRUSH.EXE ExploreWClass EXPLORER.EXE WordPadClass WORDPAD.EXE REFERENCESFor more information about the Class Names for the Office 97 Applications, please see the following article in the Microsoft Knowledge Base:
ARTICLE-ID: Q169240 TITLE : Window Class Names for the Office 97 Applications"Programming Windows: the Microsoft Guide to Writing Applications for Windows 3," by Charles Petzold, Microsoft Press, 1990 "Microsoft Windows 3.1 Programmer's Reference," Volume 2 "Microsoft Win32 Sofware Development Kit"
|
Additional query words:
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |