Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
How to avoid another instance of the exe
Message
From
12/11/2002 16:22:52
 
 
To
12/11/2002 15:27:53
General information
Forum:
Visual FoxPro
Category:
Other
Miscellaneous
Thread ID:
00721779
Message ID:
00721823
Views:
7
Here is how I do it:
IF CheckWin('Policy Profiler 32')    && window title in quotes
   MESSAGEBOX('Policy Profiler is already running.'+CHR(13);
			 +'Please check your taskbar for the app'+CHR(13);
   			 +'and click on its button to maximize it.' ,48,'Policy Profiler is already running!')
   RETURN .F.
ENDIF


*---------------
FUNCTION CheckWin
    PARAMETER tcTitle

    * Routine which sees if an application is active by looking for its
    * Window title
    * expC1 Window title

    DECLARE INTEGER FindWindow in Win32API as FindWindow STRING, STRING

    RETURN IIF(FindWindow(0,tcTitle)>0,.T.,.F.)
.·*´¨)
.·`TCH
(..·*

010000110101001101101000011000010111001001110000010011110111001001000010011101010111001101110100
"When the debate is lost, slander becomes the tool of the loser." - Socrates
Vita contingit, Vive cum eo. (Life Happens, Live With it.)
"Life is not measured by the number of breaths we take, but by the moments that take our breath away." -- author unknown
"De omnibus dubitandum"
Previous
Reply
Map
View

Click here to load this message in the networking platform