DECLARE INTEGER GetTickCount IN kernel32.dll
lnSeconds = GetTickCount() / 1000
lnHours = INT (lnSeconds/3600)
lnSeconds = lnSeconds - lnHours * 3600
lnMinutes = INT (lnSeconds/60)
lnSeconds = lnSeconds - lnMinutes * 60
? "Time since the restart: "
?? STRTRAN (STR(lnHours,2) + ":" + STR(lnMinutes,2) + ":";
+ STR(lnSeconds,2), " ","0")