Hallo himitsu
ich weiß leider nicht was Du unter
Zitat von
himitsu:
...OnSelectCell hilft mir auch nichts, da die Zellen immer noch auswählbar sein soll...
verstehst, aber damit
Delphi-Quellcode:
PROCEDURE TForm1.StringGrid1SelectCell(Sender: TObject; ACol,
ARow: Integer; VAR CanSelect: Boolean);
BEGIN
IF ACol IN [1, 2] THEN
StringGrid1.Options := StringGrid1.Options + [goEditing]
ELSE
StringGrid1.Options := StringGrid1.Options - [goEditing];
END;
ist die Zelle mit der Maus anwählbar, aber der Text nicht selektierbar.