showwindow (coredll)
Last changed: zwcloud-117.150.2.23

.
Summary
This function sets the specified window's show state.

C# Signature:

[DllImport("coredll.dll", SetLastError=true)]
static extern bool ShowWindow(IntPtr hWnd, int nCmdShow);

VB Signature:

Declare Function ShowWindow Lib "coredll.dll" (ByRef hWnd As IntPtr, ByVal nCmdShow As Integer) As Boolean

User-Defined Types:

None.

Alternative Managed API:

Do you know one? Please contribute it!

Notes:

hWnd is a parameter containing the handle to the window.

nCmdShow is an integer type parameter specifying how the window is to be shown. See ShowWindowCommand

Tips & Tricks:

Please add some!

Sample Code:

Please add some!

Documentation