아무 윈도우나 다시 그리게 하고 싶을 때, 아래처럼.


procedure Repaint(h: HWND);
begin
  InvalidateRect(h, nil, True);
  UpdateWindow(h);
end;





Posted by bloodguy
,