PrivateDeclareFunctionGetTickCountLib"kernel32"()AsLong
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->