0
I have a Label component that shows the number of files in a folder.
While downloading multiple files the number displayed by Tlabel changes (as the files in the folder).
How do I stop when label caption stops changing (or stops displaying different values) to fire a stopwatch from scratch?
For a simple stopwatch use the following code:
procedure TFrmMain.TimerAtivTimer(Sender: TObject);
begin
//Cronometro para Tempo em Atividade
LblTempoAtividade.Caption := 'Em Atividade: ' + FormatDateTime('hh:mm:ss', TempoAntigo - NOW);
Application.ProcessMessages;
It would take a new Timer for that?