![]() |
|
|
|
|
#1
|
||||
|
||||
|
Код:
procedure TForm1.StringGrid1SelectCell(Sender: TObject; ACol, ARow: Integer; var CanSelect: Boolean); begin if ACol = 4 then StringGrid1.Options := StringGrid1.Options - [goEditing] else StringGrid1.Options := StringGrid1.Options + [goEditing]; end; |