Application.GetWndHandle

number Application.GetWndHandle (

)

Example 1

handle = Application.GetWndHandle();

Gets the numeric window handle for the installation window and stores it in the variable "handle."

Example 2

-- Get the installation window handle.
handle = Application.GetWndHandle();

-- Hide the installation window.
Window.Hide(handle);

-- Sleep for 3 seconds.
Application.Sleep(3000);

-- Show the installation window.
Window.Show(handle);

Gets the numeric window handle for the installation window and stores it in the variable "handle." The window handle is then used to hide the window for 3 seconds.

See also:  Related Actions