Stop Statement

Stops the execution of the Basic program.

தொடரமைப்பு:

Stop

எடுத்துக்காட்டு:

Sub ExampleStop

Dim iVar As Single

    iVar = 36

    Stop

    MsgBox Sqr(iVar)

End Sub