Label

Delphi

18/04/2004

Olá pessoal . . .
Com respeito ao Label, mais especificamente o TRXLabel, tenho duas dúvidas:
- como piscar o [b]TEXTO;
- como ´temporizar´, exibindo um texto por alguns segundo, em seguida apagar?
Obrigado.
Reginaldo Zumstein


Rezum

Rezum

Curtidas 0

Respostas

Fabio.hc

Fabio.hc

18/04/2004

Se for com o label, tente assim:

var
  Form1: TForm1;
  lbl:string;

procedure TForm1.FormCreate(Sender: TObject);
begin
   Lbl:=´Label piscando ...´;
end;

procedure TForm1.Timer1Timer(Sender: TObject);
begin
   if Label1.Caption = ´´ then
      Label1.Caption:=lbl
   else
      Label1.Caption:=´´;
end;



GOSTEI 0
POSTAR