Wait for Windows to be Closed/Changed
|
Previous Top Next |
· | Handle of window (special number assigned by Operating System)
|
· | PID, is the Process ID of the program owner of the Window
|
· | Name of executable program owner of Window
|
· | Full location of executable program owner of window
|
· | Class Name (developers)
|
· | Width in pixels
|
· | Height in pixels
|
· | Coordinates of window: (Left, Top)-(Right, Bottom).
|
· | Close window: this command send a "close window" message to selected window. The target window receives the message and handle it, usually causes the entire target application to close (is a normal behavior: if a Main window of a program is closed, the application terminates normally). This method is better than kill a task/process, because the program receives the close message and can run any needed procedure before termination.
|
· | Shutdown window: this command is similar to Close window, but it simulates the Windows Logoff/Shutdown procedure. This means, it tricks the target window/application sending messages "Windows is about to close/end", the same messages your Operating System uses to terminate applications when logoff/shutdown Windows.
|
· |
|