Jump

Jump to a label in another procedure.  This  should only be used when absolutely necessary. Their main purpose is to make it easier importing existing assembly files.  

Syntax: Jump procedure_label

Example:

Sub proc1()
  Jump proc2_jmp1  ' Jump to jmp1: inside proc2
End Sub

Sub proc2()
  ' do something
jmp1:
  ' do something else
End Sub

Also See: Goto