![]() |
Delphi-Version: 2006
StringGrid -> goEditing = FALSE -> Eine Spalte editierbar
Hallo zusammen,
ich möchte in einem StringGrid nur eine Spalte editierbar machen. goEditing habe ich auf FALSE gelassen und wollte in onSelectCell folgendes tuen:
Code:
Klappt aber nicht ...
With Sender as TStringGrid do
begin If ACol = 6 then begin CanSelect := True; exit; end; end; |
AW: StringGrid -> goEditing = FALSE -> Eine Spalte editierbar
Hallo,
ich hab das mal so gelöst:
Delphi-Quellcode:
In diesem Beispiel sind die 2. und 3. Spalte editierbar - das musst du dann an deine Wünsche anpassen.
procedure TForm1.StringGrid1SelectCell(Sender: TObject; ACol,
ARow: Integer; var CanSelect: Boolean); var StringGrid: TStringGrid; begin //temporäres StringGrid StringGrid := Sender as TStringGrid; //Zellen-Editor ausschalten StringGrid.Options := StringGrid.Options - [goEditing]; If ARow > 0 then //2. und 3. Spalte editierbar If ACol in [1, 2] then begin //Zellen-Editor einschalten StringGrid.Options := StringGrid.Options + [goEditing]; end; end; Nebenbei bemerkt: "Klappt aber nicht" ist wie "Geht nicht" keine Fehlermeldung! |
AW: StringGrid -> goEditing = FALSE -> Eine Spalte editierbar
Vielen dank. Klappt gut.
|
Alle Zeitangaben in WEZ +1. Es ist jetzt 02:31 Uhr. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz