Search found 81 matches: isexerunning

Return to advanced search

Re: FWH64, Windows 8.1 y IsExeRunning() (SOLVED)

Enrico, Thanks for your input. This could be something wrong with my setup, in my new Windows 8.1 OS, or maybe the program was running hidden in memory, as this morning I had this problem. Now, after restarting the computer, I did recompile the software and the function is working fine again. Regard...
by George
Fri Jan 31, 2014 8:22 pm
 
Forum: Bugs report & fixes / Informe de errores y arreglos
Topic: FWH64, Windows 8.1 y IsExeRunning() (SOLVED)
Replies: 2
Views: 652

Re: FWH64, Windows 8.1 y IsExeRunning()

George, Hola, Reportando que la funcion IsExeRunning() siempre devuelve .F. cuando se compila y se ejecuta en Windows 8.1 Saludos, George I just tested it and get the correct result. This is my test: #include "Fivewin.ch"FUNCTION MAIN()  ...
by Enrico Maria Giordano
Fri Jan 31, 2014 5:06 pm
 
Forum: Bugs report & fixes / Informe de errores y arreglos
Topic: FWH64, Windows 8.1 y IsExeRunning() (SOLVED)
Replies: 2
Views: 652

FWH64, Windows 8.1 y IsExeRunning() (SOLVED)

Hola,
Reportando que la funcion IsExeRunning() siempre devuelve .F. cuando se compila y se ejecuta en Windows 8.1

Saludos,

George
by George
Fri Jan 31, 2014 3:36 pm
 
Forum: Bugs report & fixes / Informe de errores y arreglos
Topic: FWH64, Windows 8.1 y IsExeRunning() (SOLVED)
Replies: 2
Views: 652

Re: ISEXERUNNING - CaseSensitive

Otto You can try this code? Function Probar()Local lcExeName := "notepad.exe"? IsExeRunning( lcExeName,  )Return nilFUNCTION IsExeRunning(tcName, lTerminate)Local oLocatorLocal oWMILocal oProcessesLocal oProcessLocal lIsRunningDEFAULT lTerminate ...
by cnavarro
Sat Jan 11, 2014 10:23 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: ISEXERUNNING - CaseSensitive
Replies: 2
Views: 699

ISEXERUNNING - CaseSensitive

Hello, can someone please help me to change isExeRunning to uppercase. If your exe ist stored like "xTest.exe" in a folder and you call from a program winexec("XTEST.exe") IsExeRunning does not detect the running xTest.exe. ...
by Otto
Sat Jan 11, 2014 9:26 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: ISEXERUNNING - CaseSensitive
Replies: 2
Views: 699

¿Aplicación Externa corriendo? - solucionado

... está siendo ejecutada en ese momento. Estuve buscando en los manuales de FWH pero no encontré una función para tal fin. Probé con la que figura ( IsExeRunning( <cExeName> ) --> lRunning ), pero no funciona y no sé si porque uso win 7. ¿Existe?, ¿se puede lograr lo que necesito?. Gracias. ...
by rolando
Sun May 05, 2013 12:39 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: ¿Aplicación Externa corriendo? - solucionado
Replies: 5
Views: 749

Re: Upgrading FWH/xHarbour & VS 2010

Don, Please simplify it to know what functions has the problem:      IF ISEXERUNNING( CFILENOEXT( HB_ARGV( 0 ) ) )      // SHOWWINDOW( FINDWINDOW( 0, "Accident Benefit Association" ), 9 )    ...
by Antonio Linares
Mon Apr 22, 2013 11:14 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Upgrading FWH/xHarbour & VS 2010
Replies: 44
Views: 10136

Re: isexerunning

Enrico, all, solved!! I use database fields to make the title of the main window, like a->field1+a->field2, perhaps it has spaces in the field, not finding the window title, after use a constant as name of the main window, it worked. I think that all solutions posted work, the error was in the...
by norberto
Sun May 06, 2012 6:04 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: isexerunning (Solved)
Replies: 18
Views: 4002

Re: isexerunning

#include "FiveWin.ch"//----------------------------------------------------------------------------//function Main()IF ISEXERUNNING( CFILENOEXT( HB_ARGV( 0 ) ) )SHOWWINDOW( FINDWINDOW( 0, "FiveWin for xHarbour" ), 9 )SETFOREGROUNDWINDOW( ...
by Enrico Maria Giordano
Sun May 06, 2012 5:27 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: isexerunning (Solved)
Replies: 18
Views: 4002

Re: isexerunning

... at FiveWin.ch #include "FiveWin.ch" //----------------------------------------------------------------------------// function Main() IF ISEXERUNNING( CFILENOEXT( HB_ARGV( 0 ) ) ) SHOWWINDOW( FINDWINDOW( 0, "TUTOR01" ), 9 ) SETFOREGROUNDWINDOW( FINDWINDOW( 0, "TUTOR01" ...
by norberto
Sun May 06, 2012 4:48 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: isexerunning (Solved)
Replies: 18
Views: 4002

Re: isexerunning

Yes, you can. That's just what my sample does. I use it in my applications.

EMG
by Enrico Maria Giordano
Sun May 06, 2012 3:52 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: isexerunning (Solved)
Replies: 18
Views: 4002

Re: isexerunning

hI, isexerunning detects another instance, but i cant put this in foreground (focus).
by norberto
Sun May 06, 2012 3:11 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: isexerunning (Solved)
Replies: 18
Views: 4002

Re: isexerunning

Kleyber, this works after build main window, i need before. i need something using the name of exe, not main windows title, because at this point , it not create. Thanks Norberto, I would like to understand it better: If you have another instance of your program, how is this running in you computer...
by Kleyber
Sun May 06, 2012 2:05 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: isexerunning (Solved)
Replies: 18
Views: 4002

Re: isexerunning

My sample works before the main windows is created.

EMG
by Enrico Maria Giordano
Sun May 06, 2012 8:57 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: isexerunning (Solved)
Replies: 18
Views: 4002

Re: isexerunning

Enrico, Otto, thanks, but dont work to me. I wanted check the existence of another instance the application before creating the main window, before checking the User, open files, etc. all the solutions posted work after the main window created .I wanted first of all, at the beginning of the system. ...
by norberto
Sat May 05, 2012 11:21 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: isexerunning (Solved)
Replies: 18
Views: 4002
PreviousNext

Return to advanced search