vote up 0 vote down star

How can I code to see how long the computer has been on.

Simple examples of code if possible.

flag
2  
@Reallyethical: Was the name calling really necessary? – Ken White Oct 29 at 19:52
8  
@Ken White: No it wasn't necessary, but if you look at one of the recent questions Jim Moore asked, Reallyethical answered it and then Jim turned around and essentially stole the answer and claimed it as his own. Can't really say I blame him, or that I agree with his language, but I understand his ire. – Ryan J. Mills Oct 29 at 20:23
4  
I have removed the comment. with GetTickCount beaware its only valid for 49.7 days, if Vista or windows 7 then there is an int64 version (external call) which is.. well long enough. – Reallyethical Oct 29 at 21:13

2 Answers

vote up 9 vote down check

You use GetTickCount function see this example.

program Ticks;

{$APPTYPE CONSOLE}

uses
  Windows,
  SysUtils;

function TicksToStr(Ticks: Cardinal): string;    //Convert Ticks to String
var
  aDatetime : TDateTime;
begin
   aDatetime := Ticks  / SecsPerDay / MSecsPerSec;
   Result := Format('%d days, %s', [Trunc(aDatetime), FormatDateTime('hh:nn:ss.z', Frac(aDatetime))]) ;
end;

begin
  try
     Writeln('Time Windows was started '+ TicksToStr(GetTickCount));
     Readln;
  except
    on E:Exception do
      Writeln(E.Classname, ': ', E.Message);
  end;
end.

UPDATE

to get the info in other format just must edit this line,

   Result := Format('%d days, %d hours %d minutes %d seconds ', [Trunc(aDatetime), HourOf(aDatetime),MinuteOf(aDatetime),SecondOf(aDatetime) ]) ;

and add the unit DateUtils.

link|flag
Thats good for when, but I need how long like 4 days 3 hours 2 mins u see what i mean – Jim Moore Oct 29 at 19:25
Not that I know Delphi, but it looks like he has that there. – jprete Oct 29 at 19:42
2  
@Jim: Days followed by hh:mm:ss.z is clearly what you want. – Jeroen Pluimers Oct 29 at 19:48
3  
@RE Its a very good, detailed answer, and I don't need to run that through the compiler to see its perfect. He has answered your question in full, so I would suggest you accept it. – Reallyethical Oct 29 at 20:54
2  
GetTickCount will wrap around to zero after ~49.7 days. Better use the performance counter 'System Up Time' or, on Vista and later versions, GetTickCount64. – TOndrej Oct 30 at 8:54
show 1 more comment
vote up 3 vote down

Note that GetTickCount isn't really designed for accuracy.

For more reliable timing, use the QueryPerformanceCounter and QueryPerformanceFrequency api calls:

function SysUpTime : TDateTime;
var
  Count, Freq : int64;
begin
  QueryPerformanceCounter(count);
  QueryPerformanceFrequency(Freq);
  if (count<> 0) and (Freq <> 0) then
  begin
    Count := Count div Freq;
    Result := Count / SecsPerDay;
  end
  else
    Result := 0;
end;
link|flag
Exactly how "accurate" do you require your uptime measurement to be?!? – Craig Stuntz Oct 30 at 12:54
Not much really - depend on what he wants to use it for. I seem to recall someone saying that GetTickCount may miss some millseconds, but I have no evidence of that - in retrospect, I suspect it was nonsense. – Gerry Oct 30 at 21:28

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.