需要 'While' 或 'Until'

创建了一个Do循环,但是未包含相关的While Until 关键词。一个Do 循环的测试条件需要在测试条件语句中使用一个WhileUntil 关键词。下面演示 一个Do 循环的正确结构。

Do [{While | Until} condition]
   [statements]
   [Exit Do]
   [statements]
Loop 

或者可以使用语法:

Do
   [statements]
   [Exit Do]
   [statements]
Loop [{While | Until} condition]

要纠正该错误

请参阅

代码中循环 | Do...Loop 语句 | For...Next 语句 | For...Next 语句 | While...Wend 语句 | Exit 语句

www.51windows.Net