ªð¦^¦Cªí ¤W¤@¥DÃD µo©«

[µo°Ý] excel «ö¶s§@°Ê ÃC¦âÅÜ¤Æ ªº°ÝÃD

[µ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

¦^´_ 2# GBKEE
ÁÂÁª©¥D

TOP

        ÀR«ä¦Û¦b : ¡i»X½ªªº¦Û¥Ñ¡j¤H±`¦b¤°»ò³£¥i¥H¦Û¥Ñ¦Û¦bªº®É­Ô¡A«o³Q³oºØÀH¤ß©Ò±ýªº¦Û¥Ñ»X½ª¡AµêÂY®É¥ú¦Ó²@µLıª¾¡C
ªð¦^¦Cªí ¤W¤@¥DÃD