Re: mouse over DBGRID

Posted by Jean Claude Servaye on April 20, 2001 at 17:59:41:

In Reply to: mouse over DBGRID posted by Omer Yasar Can on April 18, 2001 at 10:48:12:

procedure TForm1.DBGrid1MouseMove(Sender: TObject; Shift: TShiftState; X,
  Y: Integer);
var
  T : TGridCoord;
begin
  T := DBGrid1.MouseCoord(X,Y);
  Caption := IntToStr(T.X)+' '+ IntToStr(T.Y);
end;


Related Articles and Replies    DelphiLand FAQ    DelphiLand Home