I have a problem using command "HotKeySet"
I want that pressing on keyboard "CTRL" & "ESC" the program close process & exit but don't Run.
This is an example.
Run("calc.exe")
While 1
HotKeySet("^{ESC}", "EndAll")
Sleep(100)
Wend
Func EndAll()
processclose("calc.exe")
Exit...