Ver Mensaje Individual
  #2  
Antiguo 10-02-2009
Avatar de droguerman
droguerman droguerman is offline
Miembro
 
Registrado: abr 2005
Ubicación: tierra
Posts: 999
Reputación: 22
droguerman Va por buen camino
Has intentado hacer algo como:
Código Delphi [-]
function CrearLabel(parent : TStatusBar);
var
  oLabel : TLabel;
begin
  oLabel := TLabel.create(parent);
  oLabel.Parent  := parent;
  oLabel.caption := 'hello';
  oLabel.top := 0;
  oLabel.left := 0;
  oLabel.visible := true;
end;
__________________
self.free;
Responder Con Cita