Ver Mensaje Individual
  #2  
Antiguo 18-12-2003
Descendents Descendents is offline
Miembro
 
Registrado: may 2003
Ubicación: Barcelona
Posts: 396
Reputación: 22
Descendents Va por buen camino
Código:
procedure TForm1.StringGrid1SelectCell(Sender: TObject; ACol,
  ARow: Integer; var CanSelect: Boolean);
begin
 if (acol = 2) and (arow = 1) then
   StringGrid1.Options :=StringGrid1.Options-[goediting]
 else
   StringGrid1.Options :=StringGrid1.Options+[goediting];
end;
A ver si esto te va bien

Saludos
Responder Con Cita