首页 > 学院 > 开发设计 > 正文

利用Api函数计算Windows从启动后所运行的总

2019-11-18 17:46:20
字体:
来源:转载
供稿:网友
PRivateDeclareFunctionGetTickCountLib"kernel32"()AsLong

PrivateSubTimer1_Timer()
DimhourAsInteger
DimminuteAsInteger
DimsecondAsInteger
hour=GetTickCount/1000/60/60
Label1.Caption=Str(hour) "小时"

minute=(GetTickCount-hour*60*60*1000)/1000/60
Label2.Caption=Str(minute) "分钟"

second=(GetTickCount-Val(Label1.Caption)*60*60*1000-Val(Label2.Caption)*60*1000)/1000
Label3.Caption=Str(second) "秒钟"
EndSub->


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表