Ver Mensaje Individual
  #3  
Antiguo 22-01-2005
Avatar de salvica
salvica salvica is offline
Miembro
 
Registrado: mar 2004
Ubicación: Albacete (España) ... En un lugar de la Mancha ...
Posts: 304
Reputación: 21
salvica Va por buen camino
Según tengo entendido, el bitmap debes crearlo y eliminarlo con el componente
Código Delphi [-]
 constructor Tprueba.create(AOwner: Tcomponent);
begin
 Fglyph : Tbitmap.Create;
 Fglyph := nil;
 inherited create(AOwner);
end;

destructor Tprueba.destroy; override;
begin
  Fgluph.Free;
  inherited destroy;
end;
Saludos, salvica
Responder Con Cita