📜  做直到 vb.net - VBA 代码示例

📅  最后修改于: 2022-03-11 14:51:55.900000             🧑  作者: Mango

代码示例1
Dim z As Integer = 0
'Do the action until the condition is true

'add 1 to z until z equals 20
Do Until z = 20
    MsgBox(z)
    z += 1
Loop