Ver Mensaje Individual
  #2  
Antiguo 23-02-2004
Avatar de marcoszorrilla
marcoszorrilla marcoszorrilla is offline
Capo
 
Registrado: may 2003
Ubicación: Cantabria - España
Posts: 11.221
Reputación: 10
marcoszorrilla Va por buen camino
Aquí tienes un ejemplo:

Código:
procedure TfrConClientes.DBGrid1DrawColumnCell(Sender: TObject;
  const Rect: TRect; DataCol: Integer; Column: TColumn;
  State: TGridDrawState);
begin
   if DmVil.CliBaja.Value = True then
   begin
   DBGrid1.Canvas.Brush.Color :=clInfobk;
   Dbgrid1.Canvas.Font.Style:=[fsBold];
   DBGrid1.Canvas.Font.Color:=ClBlack;
   DBGrid1.DefaultDrawColumnCell(Rect,Datacol,Column,State);
   end;
end;
Un Saludo.
__________________
Guía de Estilo de los Foros
Cita:
- Ça c'est la caisse. Le mouton que tu veux est dedans.
Responder Con Cita