Desktop Functions: Smart Device Functions:
|
Search Results for "GetCapture" in [All]aygshell1: SHFullScreen public static extern IntPtr GetCapture();
IntPtr hwnd = GetCapture(); Use this in conjunction with the SetCapture/GetCapture HWND sample: user323: GetCapture
coredll4: GetCapture
static extern IntPtr GetCapture();
Declare Function GetCapture Lib "coredll.dll" () As IntPtr You can use GetCapture in conjunction with SetCapture to obtain the window handle of a Control. See the sample code below.
IntPtr hOldWnd = GetCapture();
IntPtr hWnd = GetCapture();
IntPtr hWnd = GetCapture(); static extern IntPtr GetCapture(); 5: SetCapture You can use SetCapture in conjunction with GetCapture to obtain the window handle of a Control. See the sample code below.
IntPtr hOldWnd = GetCapture();
IntPtr hWnd = GetCapture();
// hWnd = GetCapture(); |