zoukankan      html  css  js  c++  java
  • VBA Exit Do语句

    当想要根据特定标准退出Do循环时,可使用Exit Do语句。 它可以同时用于Do...WhileDo...Until直到循环。

    Exit Do被执行时,控制器在Do循环之后立即跳转到下一个语句。

    语法

    以下是在VBA中Exit Do语句的语法。

     Exit Do

    示例

    以下示例演示如何使用Exit Do语句,如果计数器的值达到10,则退出Do循环,并在For循环之后立即跳转到下一个语句。

    Private Sub Constant_demo_Click()
       i = 0
       Do While i <= 100
          If i > 10 Then
             Exit Do   ' Loop Exits if i>10
          End If
          MsgBox ("The Value of i is : " & i)
          i = i + 2
       Loop
    End Sub

    当上面的代码被执行时,它会在消息框中输出下面的输出。

    The Value of i is : 0
    
    The Value of i is : 2
    
    The Value of i is : 4
    
    The Value of i is : 6
    
    The Value of i is : 8
    
    The Value of i is : 10
  • 相关阅读:
    2312--1.3.4 Prime Cryptarithm 牛式
    Slava and tanks 877C
    World Cup 996B(排队模拟)
    css内边距 边框
    iframs刷新的两种方法
    JS DOM节点
    JS对话框
    JS事件常用事件
    JS数组
    JS第一天
  • 原文地址:https://www.cnblogs.com/sunyllove/p/11348252.html
Copyright © 2011-2022 走看看