Q&A

  • StringGrid1DrawCell을 반복적으로 실행하기?
procedure TfmCounter.Timer1Timer(Sender: TObject);

에서

procedure TfmCounter.StringGrid1DrawCell(Sender: TObject; Col,
  Row: Integer; Rect: TRect; State: TGridDrawState);
에서 정의되어 있는 process를 반복적으로 실행을 하려고 합니다.

어떻게 하여야 합니까?

(실시간으로 시간이 변하면서 화면에는 실시간으로 뿌려주는 것입니다.)



1  COMMENTS
  • Profile
    한주영 2002.06.13 21:48
    TCustomGrid에 보면 InvalidateCell메소드가 있습니다.
    TStringGrid를 상속받아 이 메소드를 public으로 만들어 사용하면 될 것 같네요.