Вниз
Скачать: 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.098 c
1-78933
-=GaLaN=-
2003-11-12 20:22
2003.11.24
Колесико мышки


1-78964
ed_30
2003-11-14 19:05
2003.11.24
Сохранение в поток


1-79016
lucky4me
2003-11-14 10:11
2003.11.24
как прокрутить ролик Flash в приложении Delphi


1-78937
Lonely_Wolf
2003-11-12 11:36
2003.11.24
RichEdit


14-79175
Brahman
2003-10-29 09:32
2003.11.24
Комсомол - что это было ?




   Наверх