Search
Module:
Directory

   Desktop Functions:

   Smart Device Functions:


Show Recent Changes
Subscribe (RSS)
Misc. Pages
Comments
FAQ
Helpful Tools
Playground
Suggested Reading
Website TODO List
Download Visual Studio Add-In

Search Results for "DLGC" in [All]

user32

.
Summary
.

static extern int GetDlgCtrlID(IntPtr hwndCtl);

.

Public Shared Function GetDlgCtrlID(ByVal hWndCtl As IntPtr) As Integer

.
Documentation
[GetDlgCtrlID] on MSDN

Constants

2: WM
.
WM_GETDLGCODE 0x87 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_NEXTDLGCTL 0x28 The WM_NEXTDLGCTL message is sent to a dialog box procedure to set the keyboard focus to a different control in the dialog box
.

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

Enums

3: 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

.
Documentation
[DLGC] on MSDN
.

    /// 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


 
Access PInvoke.net directly from VS: