Exit Statement

Call Statement,Class Statement,Const Statement,Dim Statement,Do...Loop Statement,Erase Statement,Execute Statement,ExecuteGlobal Statement,Exit Statement,For...Next Statement,Function Statement,If...Then...Else Statement,On Error Statement,Option Explicit Statement,Private Statement,Property Get Statement,Property Let Statement,Property Set Statement,Public Statement,Randomize Statement,ReDim Statement,Rem Statement,Select Case Statement,Set Statement,Sub Statement,While...Wend Statement,With Statement Home home | Other Resources other resources | Advertise with us advertise | Link to us link to us | Contact us contact | Bookmark Us!
Google
 
Where can I find good Windows Web Hosting to host my VBScript Site?
You can find good Windows Hosting which support VBScript, ASP, ASP.Net,VisualStudio.Net and MSSQL at a very reasonable low monthly fee at EasyCGI.com and DiscountASP.Net

Exit Statement

Exits a block of Do...Loop, For...Next, Function, or Sub code.

Exit Do

Exit For

Exit Function

Exit Property

Exit Sub

The Exit statement syntax has these forms:

StatementDescription
Exit DoProvides a way to exit a Do...Loop statement. It can be used only inside a Do...Loop statement. Exit Do transfers control to the statement following the Loop statement. When used within nested Do...Loop statements, Exit Do transfers control to the loop that is one nested level above the loop where it occurs.
Exit ForProvides a way to exit a For loop. It can be used only in a For...Next or For Each...Next loop. Exit For transfers control to the statement following the Next statement. When used within nested For loops, Exit For transfers control to the loop that is one nested level above the loop where it occurs.
Exit FunctionImmediately exits the Function procedure in which it appears. Execution continues with the statement following the statement that called the Function.
Exit PropertyImmediately exits the Property procedure in which it appears. Execution continues with the statement following the statement that called the Property procedure.
Exit SubImmediately exits the Sub procedure in which it appears. Execution continues with the statement following the statement that called the Sub.

The following example illustrates the use of the Exit statement:

Sub RandomLoop
   Dim I, MyNum
   Do   ' Set up infinite loop.
      For I = 1 To 1000   ' Loop 1000 times.
         MyNum = Int(Rnd * 100)   ' Generate random numbers.
         Select Case MyNum   ' Evaluate random number.
            Case 17: MsgBox "Case 17"
               Exit For   ' If 17, exit For...Next.
            Case 29: MsgBox "Case 29"
               Exit Do   ' If 29, exit Do...Loop.
            Case 54: MsgBox "Case 54"
               Exit Sub   ' If 54, exit Sub procedure.
            End Select
      Next
   Loop
End Sub

VBScriptOnline.com - Call Statement,Class Statement,Const Statement,Dim Statement,Do...Loop Statement,Erase Statement,Execute Statement,ExecuteGlobal Statement,Exit Statement,For...Next Statement,Function Statement,If...Then...Else Statement,On Error Statement,Option Explicit Statement,Private Statement,Property Get Statement,Property Let Statement,Property Set Statement,Public Statement,Randomize Statement,ReDim Statement,Rem Statement,Select Case Statement,Set Statement,Sub Statement,While...Wend Statement,With Statement