Ver Mensaje Individual
  #6  
Antiguo 10-08-2017
Avatar de Neftali [Germán.Estévez]
Neftali [Germán.Estévez] Neftali [Germán.Estévez] is offline
[becario]
 
Registrado: jul 2004
Ubicación: Barcelona - España
Posts: 18.233
Reputación: 10
Neftali [Germán.Estévez] Es un diamante en brutoNeftali [Germán.Estévez] Es un diamante en brutoNeftali [Germán.Estévez] Es un diamante en bruto
Lo tienes que hacer manualmente.
Crea un nuevo formulario, añade un componente TValueListEditor y un TTimer.
En el evento de timer, puedes añadir un código similar a este:

Código Delphi [-]
procedure TForm3.Timer1Timer(Sender: TObject);
begin
  ValueListEditor1.Strings.Clear;
  ValueListEditor1.Strings.Add('Variable1' + '=' + IntToStr(varInteger));
  ValueListEditor1.Strings.Add('Variable2' + '=' + varString);
end;

Con tantas variables como quieras mostrar.
Añade el fomulario a los Autocreate (opciones del proyecto).
__________________
Germán Estévez => Web/Blog
Guía de estilo, Guía alternativa
Utiliza TAG's en tus mensajes.
Contactar con el Clubdelphi

P.D: Más tiempo dedicado a la pregunta=Mejores respuestas.
Responder Con Cita