- ©«¤l
- 38
- ¥DÃD
- 14
- ºëµØ
- 0
- ¿n¤À
- 58
- ÂI¦W
- 0
- §@·~¨t²Î
- win xp
- ³nÅ骩¥»
- office 2007
- ¾\ŪÅv
- 20
- ©Ê§O
- ¨k
- µù¥U®É¶¡
- 2013-5-22
- ³Ì«áµn¿ý
- 2020-3-9
|
[µo°Ý] excel «ö¶s§@°Ê ÃC¦âÅÜ¤Æ ªº°ÝÃD
±Ò°Ê ºò«æ °±¤î ¤TÓ«ö¶s ¦p¦ó³]©w ±Ò°Ê«ö¶s¦³«ö¬Oºñ¦â ¨S¦³«ö¬O¦Ç¦â
ºò«æ«ö¶s ©M°±¤î«ö¯Ã ¦³«ö¬O¬õ¦â ¨S¦³«ö¬O¦Ç¦â
Option Explicit
Dim TimerEnable As Boolean
Dim TimerStop As Boolean
Dim iValue As Integer
' ±Ò°Ê
Private Sub CommandButton5_Click()
TimerEnable = True
iValue = 0
WaitFor 1 '¨C¬íp¼Æ¤@¦¸
End Sub
' ºò«æ
Private Sub CommandButton1_Click()
TimerEnable = False
End Sub
' °±¤î
Private Sub CommandButton2_Click()
TimerStop = True
End Sub
Public Sub WaitFor(Sec As Long)
Dim t0 As Long
Dim DnCnt As Boolean
Do
t0 = Timer
While Timer - t0 < Sec
DoEvents
Wend
If Not DnCnt Then
iValue = iValue + 1
If iValue >= 10 Then
DnCnt = True
End If
Sheets(1).Range("a1").Value = iValue
Else
iValue = iValue - 1
If iValue <= 1 Then
DnCnt = False
If TimerStop Then
TimerStop = False
TimerEnable = False
Exit Do
End If
End If
Sheets(1).Range("a1").Value = iValue
End If
If Not TimerEnable Then Exit Do
Loop
Sheets(1).Range("a1").Value = iValue
End Sub |
|