Stop Statement

បញ្ឈប់​ដំណើរការ​ប្រតិបត្តិ​នៃ​កម្មវិធី Basic ។

Syntax:

Stop Statement diagram


Stop

Example:


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