Registriert seit: 30. Nov 2005
Ort: München
5.779 Beiträge
Delphi 10.4 Sydney
|
AW: StringGrid Fixed Col DoubleClick
16. Jan 2015, 15:43
Hallo,
das sollte so funktionieren:
Delphi-Quellcode:
procedure TUeMonitor.StringGrid1DblClick(Sender: TObject);
var
tp: TPoint;
mousePos: TPoint;
col, Row: Integer;
begin
GetCursorPos( tp);
mousePos := (sender as TStringGrid).ScreenToClient( tp);
(sender as TStringGrid).MouseToCell(mousePos.X,mousePos.Y,col,row);
showMessage(' Col:'+intToStr(col)+' Row:'+intToStr(row))
end;
Grüße
Klaus
Klaus
|