![]() |
![]() |
| Paypal | FTP | CCD | Buscar | Trucos | Trabajo | Foros |
|
#2
|
||||
|
||||
|
Quizá poniendo una componente TTimer para alternar el texto del mensaje entre el texto actual y una cadena vacía; por ejemplo
Código:
{$WRITEABLECONST ON}
procedure TForm1.OnTimer(Sender: TObject);
const
Mostrar: Boolean = false;
begin
if Mostrar then
StatusBar1.SimpleText := 'texto del mensaje'
else
StatusBar1.SimpleText := '';
Mostrar := not Mostrar;
end;
{$WRITEABLECONST OFF}
|
| Herramientas | Buscar en Tema |
| Desplegado | |
|
|
|