아무 윈도우나 다시 그리게 하고 싶을 때, 아래처럼.
procedure Repaint(h: HWND);
begin
InvalidateRect(h, nil, True);
UpdateWindow(h);
end;
begin
InvalidateRect(h, nil, True);
UpdateWindow(h);
end;
'Delphi' 카테고리의 다른 글
[Delphi] 실행파일 버전정보 가져오기 (0) | 2010.06.04 |
---|---|
[Delphi] 문자열이 숫자로만 되어 있는지 체크 (0) | 2010.06.03 |
[Delphi] DLL Injection (CreateRemoteThread) (2) | 2010.05.31 |
[Delphi] TStringList의 CustomSort (0) | 2010.05.24 |
[Delphi] 문자가 배열에 속하는지 비교 (0) | 2010.05.24 |