Q&A

  • Dbgrid의 DrawColumnCell에서 gdFocused에 관하여...
procedure TForm1.DBGrid1DrawColumnCell(Sender: TObject; const Rect: TRect;
  DataCol: Integer; Column: TColumn; State: TGridDrawState);
begin
     if gdFocused in State then
        showmessage('포커스');

end;

이렇게 했을때 showmessage('포커스');
가 실행이 안돼요...
어떻게 하면 실행이 되게 할수 있나요????

참고로 dbgrid의 options는 아래와 같음..
[dgEditing,dgAlwaysShowEditor,dgTitles,dgIndicator,dgColumnResize,dgColLines,dgRowLines,dgTabs,dgConfirmDelete,dgCancelOnExit]
0  COMMENTS