|
| БЕСПЛАТНАЯ ежедневная online лотерея! Выигрывай каждый день БЕСПЛАТНО! |
|
|
WM_NEXTDLGCTL
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 wCtlFocus = wParam; // identifies control for focus fHandle = (BOOL) LOWORD(lParam); // wParam handle flag
Parameters
wCtlFocus
Value of wParam. If the fHandle parameter is TRUE, the wCtlFocus parameter identifies the control that receives the focus. If fHandle is FALSE, wCtlFocus is a flag that indicates whether the next or previous control with the WS_TABSTOP style receives the focus. If wCtlFocus is zero, the next control receives the focus; otherwise, the previous control with the WS_TABSTOP style receives the focus.
fHandle
Value of lParam. Contains a flag that indicates how Windows uses the wCtlFocus parameter. If the fHandle parameter is TRUE, wCtlFocus is a handle associated with the control that receives the focus; otherwise, wCtlFocus is a flag that indicates whether the next or previous control with the WS_TABSTOP style receives the focus.
Return Values
An application should return zero if it processes this message.
Remarks
The effect of this message differs from that of the SetFocus function because WM_NEXTDLGCTL modifies the border around the control. Do not use the SendMessage function to send a WM_NEXTDLGCTL message if your application will concurrently process other messages that set the focus. Use the PostMessage function instead.
See Also
PostMessage, SendMessage, SetFocus
| Пригласи друзей и счет твоего мобильника всегда будет положительным! |
| Пригласи друзей и счет твоего мобильника всегда будет положительным! |
WM_NEXTDLGCTL
Сообщение WM_NEXTDLGCTL послано в диалоговую процедуру ящика, чтобы устанавливать клавишный фокус на другое управление в диалоговом ящике.
WM_NEXTDLGCTL wCtlFocus = wParam; // идентифицирует управление для фокуса fHandle = (BOOL) LOWORD(lParam); // Флаг ручки wParam
Параметры
wCtlFocus
Величина wParam. Если параметр fHandle является ИСТИНОЙ, параметр wCtlFocus идентифицирует управление, которое получает фокус. Если fHandle - ЛОЖЬ, wCtlFocus - флаг, который указывает независимо следующее или предшествующее управление с помощью стиля WS_TABSTOP получает фокус. Если wCtlFocus - нуль, следующее управление получает фокус; в противном случае, предшествующее управление со стилем WS_TABSTOP получает фокус.
fHandle
Величина lParam. Содержит флаг, который указывает как Окно использует параметр wCtlFocus. Если параметр fHandle - ИСТИНА, wCtlFocus - ручка связанная управлением, которое получает фокус; в противном случае, wCtlFocus - флаг, который указывает независимо следующее или предшествующее управление с помощью стиля WS_TABSTOP получает фокус.
Обратные Величины
Приложение должно возвращать нуль если оно обрабатывает это сообщение.
Замечания
Эффект этого сообщения отличается от той самой функции SetFocus поскольку WM_NEXTDLGCTL модифицирует границу вокруг управления. Не используйте функцию SendMessage, чтобы посылать сообщение WM_NEXTDLGCTL если ваше приложение параллельно обработает другие сообщения, которые устанавливают фокус. Используйте функцию PostMessage взамен.
Смотри Также
PostMessage, SendMessage, SetFocus
|
|
|
|
| |