i := 1;
while true do
begin
canvas.TextOut(start_x*100, 100+i*5, 'x');
sleep(100);
Application.ProcessMessages;
inc(i,1);
end;
while문 안에서 메세지, 이벤트 처리를 위해
Application.ProcessMessages;를 사용하는거 맞나요?
그런데, 이벤트가 실행이 되질 않네요.
폼닫기 버튼을 눌러도 폼닫혀지질 않습니다. 우째 이란일이...
어디가 틀렸나요?
다른 방법이 있으면 한수 가르쳐 주세요.
그럼
i believe i can fly~~