How can I code to see how long the computer has been on.
Simple examples of code if possible.
|
|
|||||||||||||
|
|
|
You use GetTickCount function see this example.
UPDATE to get the info in other format just must edit this line,
and add the unit DateUtils. |
||||||||||||||||
|
|
|
Note that GetTickCount isn't really designed for accuracy. For more reliable timing, use the QueryPerformanceCounter and QueryPerformanceFrequency api calls:
|
||||
|