Thread
:
Exit VBScript
View Single Post
#
2
12-14-2005, 02:02 PM
kinook
Administrator
Join Date: 03-06-2001
Location: Colorado
Posts: 6,049
Use structured programming or put your code in a subroutine and exit the subroutine:
MySub ' call the subroutine
Sub MySub()
' some code
Exit Sub
' some more code
End Sub
kinook
View Public Profile
Visit kinook's homepage!
Find all posts by kinook