Dim CountOneMin As Long
Dim num As Long
Private Sub Timer1_Timer()
CountOneMin = CountOneMin - 1000
Label1.Caption = Val(num) - 1 & " : " & Mid(CountOneMin, 1, 2)
End Sub
Private Sub Form_Load()
Timer1.Interval = 1000
CountOneMin = 60000
num = "10"
End Sub
โค้ดนี้มันจะนับถอยหลัง
10
10:59
10:58
10:57
ฯลฯ
ผมอยากจะระบุนาทีลงไปใน num ด้วยต้องทำไงครับ
ตัวอย่าง num = "10:45" แบบนี้มัน error อ่ะ
10:45
10:44
10:43
10:42
ฯลฯ