Desktop Functions: Smart Device Functions:
|
Search Results for "SetFocus" in [All]Enums1: HCBT
SetFocus = 9
SetFocus = 9
/// The WM_SETFOCUS message is sent to a window after it has gained the keyboard focus.
SETFOCUS = 0x0007,
WM_SETFOCUS = &H7
WmSetFocus = &H7 Structures
public uint bSetFocus; Interfaces4: IDeskBand
Function OnFocusChangeIS(<MarshalAs(UnmanagedType.IUnknown)> punkObj As [Object], fSetFocus As Int32) As Int32 5: IDeskBand2
Function OnFocusChangeIS(<MarshalAs(UnmanagedType.IUnknown)> punkObj As [Object], fSetFocus As Int32) As Int32
[MarshalAs (UnmanagedType.Bool)] ref bool fSetFocus); kernel32
public uint bSetFocus; shlwapi
void SetFocus(); Constants9: ShellAPI
public const int NIM_SETFOCUS = 0x00000003; 10: ShellAPI
public const int NIM_SETFOCUS = 0x00000003; 11: WM
private const UInt32 WM_SETFOCUS = 0x0007;
WM_SETFOCUS = &H7
WM_SETFOCUS equ 007h user3212: CreateCaret Windows allows only one caret per message queue. To add a caret to a control, handle the WM_SETFOCUS message, or the GotFocus event, or override OnGotFocus if you're writing a custom control, and call CreateCaret from the message or event handler. You should also handle WM_KILLFOCUS, LostFocus or OnLostFocus and call DestroyCaret. You will also need to call ShowCaret to make the caret visible, and SetCaretPos to set its position. 13: SetFocus
|