Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
How to prevent the application running twice ?
Message
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Environment versions
Visual FoxPro:
VFP 9 SP1
OS:
Windows XP SP2
Network:
Windows 2003 Server
Database:
Visual FoxPro
Miscellaneous
Thread ID:
01232152
Message ID:
01247991
Views:
57
>Here is the code I use, posted by someone else here long ago.
>
>
>DECLARE INTEGER CreateEvent IN WIN32API ;
>   INTEGER lpEventAttributes, ;
>   SHORT bManualReset, ;
>   SHORT bInitialState, ;
>   STRING @ lpName
>DECLARE INTEGER GetLastError IN Win32API
>DECLARE CloseHandle IN Win32API INTEGER hObject
>nEh = CreateEvent(0,0,1, PROGRAM(0) + '.EVENT')
>IF GetLastError() = 183 OR nEh = 0
>   *  There's an instance running already (183) or the Event can't be defined
>   *  So don't do it;  do release the handle, since it's harmless and should
>   *  be done rather than relying on Windows to clean up after itself
>   =CloseHandle(nEh)
>   QUIT
>ENDIF
>
>
>Bob
>

That's the late Ed Rauh's code.
If it's not broken, fix it until it is.


My Blog
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform