Stop 语句

停止执行 Basic 程序。

语法:

Stop

示例:

Sub ExampleStop

Dim iVar As Single

    iVar = 36

    Stop

    MsgBox Sqr(iVar)

End Sub