i can check running aplication with function IsExeRunning().
In this case, how restoring window with this application ?
With function SetForeGroundWindow( ) ?
greetings/salu2
Marek
How restore running aplication ?
- Enrico Maria Giordano
- Posts: 7355
- Joined: Thu Oct 06, 2005 8:17 pm
- Location: Roma - Italia
- Contact:
Re: How restore running aplication ?
Code: Select all
IF ISEXERUNNING( CFILENOEXT( HB_ARGV( 0 ) ) )
SHOWWINDOW( FINDWINDOW( 0, cWindowTitle ), 9 )
SETFOREGROUNDWINDOW( FINDWINDOW( 0, cWindowTitle ) )
RETURN NIL
ENDIF
Re: How restore running aplication ?
thanks !