Search found 81 matches: isexerunning

Return to advanced search

DBF REDE/WEB WINDOWS 7/10/11

... cCOMP cPasta := ".\dados" cServ := Space(1) cCOMP := "01/2021" // Space(7) REQUEST LETO RDDSETDEFAULT( "LETO" ) IF IsExeRunning( "letodb.exe" ) RETURN MsgStop( "O programa servidor já está aberto neste computador!", "Impossível Continuar!" ...
by wanderson8
Sun Jan 08, 2023 3:10 pm
 
Forum: All products support
Topic: DBF REDE/WEB WINDOWS 7/10/11
Replies: 0
Views: 9372

Re: OLE with Excel.

... with using OLE with Excel. I believe it is because Excel is running in the background when I attempt to launch a new instance. I attempted to use IsExeRunning("Excel",".",.f.) including many versions with case "EXCEL", and "excel" and it seems it reports ...
by nageswaragunupudi
Tue Oct 18, 2022 11:52 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: OLE with Excel.
Replies: 10
Views: 400

Re: OLE with Excel.

Just pop this into any app that has a menu so you can call it multiple times without terminating the app. Function McsExcelRunning() If IsExeRunning( "excel",".",.F. ) MsgStop( "Excel is currently running...","IsExeRunning" ) Else MsgInfo( "Excel ...
by byron.hopp
Tue Oct 18, 2022 7:58 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: OLE with Excel.
Replies: 10
Views: 400

OLE with Excel.

... with using OLE with Excel. I believe it is because Excel is running in the background when I attempt to launch a new instance. I attempted to use IsExeRunning("Excel",".",.f.) including many versions with case "EXCEL", and "excel" and it seems it reports ...
by byron.hopp
Tue Oct 18, 2022 6:07 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: OLE with Excel.
Replies: 10
Views: 400

Re: Como verificar que el programa esta en ejecución

... al frente de las demas abiertas, la probe en ambas formas con 5 aplicacion abiertas y todas maximizadas, asi que por los momentos me quedare con IsExeRunning
by joseluisysturiz
Fri Aug 18, 2017 4:40 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Como verificar que el programa esta en ejecución
Replies: 14
Views: 2362

Re: Como verificar que el programa esta en ejecución

Saludos, se que este tema ya es viejo...pero ahora que estoy usando IsExeRunning, pregunto...HAY MANERA DE HACER QUE ADEMAS DE DECIRME QUE MI APLICACION YA ESTA EN USO....ESTA TOME EL FOCUS DE LAS APLICACIONES ABIERTAS O SI ESTA MINIMIZADA SE MAXIMIZE ASI ...
by joseluisysturiz
Fri Aug 18, 2017 2:53 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Como verificar que el programa esta en ejecución
Replies: 14
Views: 2362

Re: Lista Processi/Programmi in esecuzione

io ho un altro problema : #define NOME_PROGRAMMA_TITLE "STUDIO" IF ISEXERUNNING( CFILENAME( HB_ARGV( 0 ) ) ) MsgWait(NOME_PROGRAMMA_TITLE+" è già in esecuzione !","Attenzione") SHOWWINDOW( FINDWINDOW( 0, NOME_PROGRAMMA_TITLE ), 9 ...
by Silvio.Falconi
Fri Feb 17, 2017 12:42 pm
 
Forum: All products support
Topic: Lista Processi/Programmi in esecuzione
Replies: 10
Views: 3398

Re: Lista Processi/Programmi in esecuzione

Ops !! Ho dovuto immediatamente togliere questo controllo ISEXERUNNING( CFILENOEXT( HB_ARGV( 0 ) ) ) ...... poichè più di un cliente mi ha riferito che non riusciva a a lanciare in programma, in quanto tale funzione risultava già in esecuzione !! Eppure ...
by Romeo
Wed Feb 15, 2017 4:25 pm
 
Forum: All products support
Topic: Lista Processi/Programmi in esecuzione
Replies: 10
Views: 3398

Re: Algo similar al IsExeRunning()

Haga asi:

Code: Select all  Expand view

   IF ISEXERUNNING( CFILENAME( HB_ARGV( 0 ) ) )
      __Quit()
   ENDIF
 


Saludos.
by karinha
Thu Aug 04, 2016 4:55 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Algo similar al IsExeRunning()
Replies: 1
Views: 342

Algo similar al IsExeRunning()

Colocando al inicio de mi sistema la funcion: IsExeRunning(cFileNoPath(HB_ArgV(0))) me indica .F. si en un servidor nadie mas esta usando el mismo sistema. Perfecto! Pero si mas adelante vuelvo a usar la misma funcion en mi sistema, ya me regresa ...
by RodolfoRBG
Thu Aug 04, 2016 4:41 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Algo similar al IsExeRunning()
Replies: 1
Views: 342

Re: BTNBMP using animated GIF's ?

... = .T. > Is there a way as soon closing MS-calc.exe, to set < lRun = .F.> to stop the animation ? I tested inside the loop with MsgAlert( IsExeRunning( "calc.exe" ) ) 1. lRun starts with .F. 2. after open calc.exe lRun shows .T. 3. closing calc.exe < IsExeRunning( "calc.exe" ...
by ukoenig
Wed Jun 22, 2016 11:01 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: A solution for BTNBMP using animated GIF's
Replies: 10
Views: 1950

Re: How to keep a appl. on top of the dialog on resize ?

... oDlg:bResized := {|| ON_TOP() } ACTIVATE DIALOG oDlg CENTERED .. .. RETURN NIL // ---- FUNCTION ON_TOP() CFILENAME := "COLORPICK.exe" IF ISEXERUNNING( CFILENAME( HB_ARGV( 0 ) ) ) SHOWWINDOW( FINDWINDOW( 0, "COLORPICK" ), 9 ) SETFOREGROUNDWINDOW( FINDWINDOW( 0, "COLORPICK" ...
by ukoenig
Sat Aug 01, 2015 7:17 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to keep a appl. on top of the dlg on resize ? (solved)
Replies: 5
Views: 2436

Re: Como verificar que el programa esta en ejecución

IF IsExeRunning( cFileNoPath( HB_ArgV( 0 ) ) ) // Sirve para verificar si ya se ejecuto el Exe... MsgBox( "El programa " + APP_TITLE + " ya esta siendo ejecutado!" ) hWnd := FindWindow( APP_TITLE ) IF hWnd ...
by postinelli
Mon Jan 05, 2015 4:19 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Como verificar que el programa esta en ejecución
Replies: 14
Views: 2362

Re: Como verificar que el programa esta en ejecución

... [ ON | OFF ] In 32 bits the same can be achieved by using the following code // Check whether the application is already running in the same PC if IsExeRunning( cFileName( HB_ARGV( 0 ) ) ) MsgWait( "Another instance of this application is already running in this PC", "Multiple Instance ...
by postinelli
Mon Jan 05, 2015 4:16 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Como verificar que el programa esta en ejecución
Replies: 14
Views: 2362

Re: ISEXERUNNING - CaseSensitive

Anyone know how to use the handle of the process I get this funtcion with FWH. For example to activate the process window, or close the process. As does FindWindow Alguien sabe como poder usar el handle del proceso que obtengo en esta funtcion con FWH. Por ejemplo para activar la ventana del proceso...
by cnavarro
Wed Feb 26, 2014 12:50 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ISEXERUNNING - CaseSensitive
Replies: 2
Views: 691
Next

Return to advanced search