Desktop Functions: Smart Device Functions:
|
Search Results for "DLGC" in [All]user321: GetDlgCtrlID
static extern int GetDlgCtrlID(IntPtr hwndCtl);
Public Shared Function GetDlgCtrlID(ByVal hWndCtl As IntPtr) As Integer Constants2: WM
private const UInt32 WM_GETDLGCODE = 0x0087;
private const UInt32 WM_NEXTDLGCTL = 0x0028;
WM_GETDLGCODE = &H87
WM_NEXTDLGCTL = &H28
WM_NEXTDLGCTL equ 028h
WM_GETDLGCODE equ 087h Enums3: DLGC
enum DLGC
DLGC_BUTTON = 0x2000,
DLGC_DEFPUSHBUTTON = 0x0010,
DLGC_HASSETSEL = 0x0008,
DLGC_RADIOBUTTON = 0x0040,
DLGC_STATIC = 0x0100,
DLGC_UNDEFPUSHBUTTON = 0x0020,
DLGC_WANTALLKEYS = 0x0004,
DLGC_WANTARROWS = 0x0001,
DLGC_WANTCHARS = 0x0080,
DLGC_WANTMESSAGE = 0x0004,
DLGC_WANTTAB = 0x0002
Enum DLGC
/// The WM_NEXTDLGCTL message is sent to a dialog box procedure to set the keyboard focus to a different control in the dialog box.
NEXTDLGCTL = 0x0028,
/// The WM_GETDLGCODE message is sent to the window procedure associated with a control. By default, the system handles all keyboard input to the control; the system interprets certain types of keyboard input as dialog box navigation keys. To override this default behavior, the control can respond to the WM_GETDLGCODE message to indicate the types of input it wants to process itself.
GETDLGCODE = 0x0087,
'''The WM_GETDLGCODE message is sent to the window procedure associated with a control. By default the system handles all keyboard input to the control; the system interprets certain types of keyboard input as dialog box navigation keys. To override this default behavior the control can respond to the WM_GETDLGCODE message to indicate the types of input it wants to process itself.
WM_GETDLGCODE = &H87
'''The WM_NEXTDLGCTL message is sent to a dialog box procedure to set the keyboard focus to a different control in the dialog box
WM_NEXTDLGCTL = &H28 |