Stop Statement

停止 Basic 程式的執行。

Syntax:

Stop Statement diagram


Stop

Example:


Sub ExampleStop
Dim iVar As Single
    iVar = 36
    Stop
    MsgBox Sqr(iVar)
End Sub

Please support us!