Вниз
Скачать: 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.016 c
14-79129
MPS
2003-11-01 15:07
2003.11.24
Группы новостей


14-79125
wnew
2003-11-01 17:08
2003.11.24
Resource Tuner


14-79151
Dmitriy O.
2003-10-30 14:36
2003.11.24
---|Ветка была без названия|---


11-78872
microlab
2003-03-09 21:45
2003.11.24
Каталог программ


7-79209
LexaVV
2003-09-16 10:08
2003.11.24
MAC адрес, BIOS




   Наверх