Window.Show

Window.Show ( 

number WndHandle )

Example 1

Window.Show(app_handle);

Shows the window of a program whose window handle is stored in the variable "app_handle."

Example 2

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

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

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

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

Gets the numeric window handle for the application 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