Вниз
Скачать: CL | DM;

Как реализовать Application.ProcessMessages на WinApi?(-)   Найти похожие ветки 

 
plyaznik   (2003-09-28 02:07) [0]

-


 
Asteroid ©   (2003-09-28 06:29) [1]


function ProcessMessages(): Boolean;
begin
if ( PeekMessage( msg, 0, 0, 0, PM_REMOVE ) ) then // Check if there is a message for this window
begin
if ( msg.message = WM_QUIT ) then // If WM_QUIT message received then we are done
finished := True
else
begin // Else translate and dispatch the message to this window
TranslateMessage(msg);
DispatchMessage(msg);
end;
Result := true;
end
else
Result := false;
end;


Result - были ли вообще сообщения в очереди.



Страницы: 1 вся ветка

Скачать: CL | DM;



Память: 0.44 MB
Время: 0.032 c
3-78757
Алексей Мэрфи
2003-11-03 14:23
2003.11.24
Многопользовательский доступ к DBF


11-78866
dreddd
2003-03-05 21:43
2003.11.24
про форму и UDP


1-78988
Татьяна
2003-11-14 15:04
2003.11.24
TF1Book


1-78998
Движняк
2003-11-13 22:21
2003.11.24
Слежение за приложением


14-79114
IronHawk
2003-10-17 15:28
2003.11.24
ВНИМАНИЕ! 6-я официальная встреча Мастаков в КИЕВЕ!




   Наверх