Вниз
Скачать: 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.015 c
1-78887
tipman
2003-11-13 09:32
2003.11.24
О параметрах командной строки...


3-78844
Kinder
2003-10-29 19:53
2003.11.24
почему не происходит сортировки?


3-78785
GIL
2003-11-05 14:37
2003.11.24
QuickReport


1-78975
Andy
2003-11-14 15:26
2003.11.24
в Edit1.text вводились только русские буквы


1-79048
Condor
2003-11-13 14:33
2003.11.24
Текст с прозрачам фоном




   Наверх