-
求一個10分鐘的桌面倒計時器
你下載一首10分鐘的歌,聽完一邊,就是10分鐘 咕~~(╯﹏╰)b -
女神節(jié)禮物胖東來品質(zhì)學生計時器廚房定時器提醒器倒電子鬧鐘秒表鐘磁吸分鐘大聲 大音量大屏幕【綠色+粉色】開關+記憶+磁鐵-+7號12.0元東選品質(zhì)店
-
VB制作倒計時器問題
Option Explicit Dim h As Integer, m As Integer, s As Integer Private Sub Command1_Click() If Not IsNumeric(Text1.Text) Then MsgBox "請正確小時數(shù)!" Exit Sub End If If Not IsNumeric(Text2.Text) Then MsgBox "請正確分鐘數(shù)!" Exit Sub End If If Not IsNumeric(Text3.Text) Then MsgBox "請正確秒數(shù)!" Exit Sub End If h = Text1.Text m = Text2.Text s = Text3.Text If m >= 60 Then MsgBox "分鐘數(shù)必須小于60!" Exit Sub End If If s >= 60 Then MsgBox "秒數(shù)必須小于...