Форум: "WinAPI";
Текущий архив: 2006.07.02;
Скачать: [xml.tar.bz2];
ВнизСообщения чужим окнам Найти похожие ветки
← →
Noby (2006-03-30 13:40) [0]Помогите плз... скажите что нужно отправить чужому окну что бы оно стало активным или не октивным
← →
Сергей М. © (2006-03-30 14:24) [1]The WM_ACTIVATE message is sent when a window is being activated or deactivated. This message is sent first to the window procedure of the top-level window being deactivated; it is then sent to the window procedure of the top-level window being activated.
← →
balepa © (2006-03-30 14:45) [2]WM_ACTIVATE Notification
The WM_ACTIVATE message is sent to both the window being activated and the window being deactivated. If the windows use the same input queue, the message is sent synchronously, first to the window procedure of the top-level window being deactivated, then to the window procedure of the top-level window being activated. If the windows use different input queues, the message is sent asynchronously, so the window is activated immediately.
Syntax
WM_ACTIVATE
WPARAM wParam
LPARAM lParam;
Parameters
wParam
The low-order word specifies whether the window is being activated or deactivated. This parameter can be one of the following values. The high-order word specifies the minimized state of the window being activated or deactivated. A nonzero value indicates the window is minimized.
WA_ACTIVE
Activated by some method other than a mouse click (for example, by a call to the SetActiveWindow function or by use of the keyboard interface to select the window).
WA_CLICKACTIVE
Activated by a mouse click.
WA_INACTIVE
Deactivated.
lParam
Handle to the window being activated or deactivated, depending on the value of the wParam parameter. If the low-order word of wParam is WA_INACTIVE, lParam is the handle to the window being activated. If the low-order word of wParam is WA_ACTIVE or WA_CLICKACTIVE, lParam is the handle to the window being deactivated. This handle can be NULL.
Return Value
If an application processes this message, it should return zero.
Remarks
If the window is being activated and is not minimized, the DefWindowProc function sets the keyboard focus to the window. If the window is activated by a mouse click, it also receives a WM_MOUSEACTIVATE message.
← →
Игорь Шевченко © (2006-03-30 14:48) [3]Сергей М. © (30.03.06 14:24) [1]
balepa © (30.03.06 14:45) [2]
Насколько я помню, WM_ACTIVATE - это следствие, а не причина.
А причиной является SetForegroundWindow или SetFocus
← →
balepa © (2006-03-30 14:50) [4]SetForegroundWindow(HWND)
Страницы: 1 вся ветка
Форум: "WinAPI";
Текущий архив: 2006.07.02;
Скачать: [xml.tar.bz2];
Память: 0.45 MB
Время: 0.009 c