Desktop Functions: Smart Device Functions:
|
Search Results for "SetFocus" in [All]Constants1: ShellAPI
public const int NIM_SETFOCUS = 0x00000003; 2: ShellAPI
public const int NIM_SETFOCUS = 0x00000003; 3: WM
private const UInt32 WM_SETFOCUS = 0x0007;
WM_SETFOCUS = &H7
WM_SETFOCUS equ 007h Enums4: 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 kernel32
public uint bSetFocus; Interfaces7: IDeskBand
Function OnFocusChangeIS(<MarshalAs(UnmanagedType.IUnknown)> punkObj As [Object], fSetFocus As Int32) As Int32 8: IDeskBand2
Function OnFocusChangeIS(<MarshalAs(UnmanagedType.IUnknown)> punkObj As [Object], fSetFocus As Int32) As Int32
[MarshalAs (UnmanagedType.Bool)] ref bool fSetFocus); shlwapi10: IPreviewHandler
void SetFocus(); user3211: 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. 12: SetFocus
static extern IntPtr SetFocus(IntPtr hWnd);
Private Declare Function SetFocus Lib "user32.dll" (ByVal hwnd As IntPtr) As IntPtr SetFocus(p.MainWindowHandle) Structures
public uint bSetFocus; |