Hi,
I have to kill "Adobe Reader" that remains open after a print.
ShellExecute( 0, "print", cFile1 , "" ,"" , 0 )
In this way I obtain list of all active task
LOCAL aTasks := GetTasks()
LOCAL i
LOCAL cEleTask := ""
FOR i := 1 TO LEN(aTasks)
IF aTasks[ i ] == "Adobe Reader"
ENDIF
NEXT i
RETURN NIL
The question is: How to kill Adobe Reader?
Best regards
Marco