Registriert seit: 30. Jan 2005
Ort: Münster
745 Beiträge
Delphi 3 Professional
|
Re: Markiertes im StringGrid an Komponente übergeben???
6. Mai 2005, 23:25
Hallo,
was raffst Du nicht
Der Code sollte dir weiterhelfen:
Delphi-Quellcode:
var
myRect: TGridRect;
begin
myRect := StringGrid1.Selection;
showmessage('Top: '+IntToStr(myRect.Top)+#10#13
+'Left: '+IntToStr(myRect.Left)+#10#13
+'Right: '+IntToStr(myRect.Right)+#10#13
+'Bottom: '+IntToStr(myRect.Bottom)+#10#13
+'AktiveSpalte: '+IntToStr(StringGrid1.Col)+#10#13
+'Aktivezeile: '+IntToStr(StringGrid1.Row));
end;
MfG Lannes
(Nichts ist nicht Nichts) and ('' <> nil ) and (Pointer('') = nil ) and (@('') <> nil )
|