利用Api函数计算Windows从启动后所运行的总
每个人都希望每天都是开心的,不要因为一些琐事扰乱了心情还,闲暇的时间怎么打发,关注图老师可以让你学习更多的好东西,下面为大家推荐利用Api函数计算Windows从启动后所运行的总,赶紧看过来吧!
PrivateSubTimer1_Timer()
DimhourAsInteger
DimminuteAsInteger
DimsecondAsInteger
hour=GetTickCount10006060
Label1.Caption=Str(hour) "小时"
minute=(GetTickCount-hour*60*60*1000)100060
Label2.Caption=Str(minute) "分钟"
second=(GetTickCount-Val(Label1.Caption)*60*60*1000-Val(Label2.Caption)*60*1000)1000
Label3.Caption=Str(second) "秒钟"
EndSub->