Ver Mensaje Individual
  #2  
Antiguo 27-02-2007
Avatar de Bicho
[Bicho] Bicho is offline
Miembro Premium
 
Registrado: jul 2003
Ubicación: Inca - Mallorca
Posts: 1.776
Reputación: 24
Bicho Va por buen camino
Hola,

yo uso lo siguiente:

Código Delphi [-]
procedure Tform1.PageControl1DrawTab(Control: TCustomTabControl; TabIndex: Integer; const Rect: TRect; Active: Boolean);
begin
  with PageControl1.canvas do begin
    fillrect(rect);
    brush.style := bsClear;
    font.Color := clWhite;
    textout(rect.left+3,rect.top+3,PageControl1.Pages[TabIndex].Caption);
    font.Color := clBlack;
    textout(rect.left+2,rect.top+2,PageControl1.Pages[TabIndex].Caption);
  end;
end;

Saludos
Responder Con Cita