Hello,
I have some simple procedure to show running time, with timer.
procedure TForm1.Timer1Timer(Sender: TObject);
var H,M,S,S2,MS,s3 : word;
runningtime:TDateTime;
begin
DecodeTime(69214902 /1000/60/60/024, H, M, S, MS);
runningtime:=Now-EncodeTime(H,M,S,MS);
label1.Caption:=FormatDateTime('hh.mm.ss.zzz',runningtime);
end;
This will show me running time.
I want to add factor to this running time. for example 0,8, time should run slower for 20 percent ...
Any idea how to make this?
Regards Mich