Purpose 
Ends a structure or procedure. 
This command is required to end Sub, Function, Select, and Type structures. It is also required to end If structures unless the If command is all on one line. An End command used by itself stops execution of the application. 
Syntax 
End 
End Sub 
End Function 
End If 
End Select 
End Type 
Example 
If StartupString = "Box" Then 
        Print "Take the box to the curb" 
        End 
End If 
 |