[DllImport("coredll.dll", SetLastError=true)]
static extern bool ShowWindow(IntPtr hWnd, int nCmdShow);
Declare Function ShowWindow Lib "coredll.dll" (ByRef hWnd As IntPtr, ByVal nCmdShow As Integer) As Boolean
None.
Do you know one? Please contribute it!
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
Please add some!
Please add some!