Used to identify a single line or statement
of code. A label can be any combination of characters that
starts with a letter and ends with a colon (:). Labels
are not case sensitive and must be placed at the begin of
statement.
Examples:
Start:
ret = MsgBox ("Start again ?","",MB_YESNOCANCEL)
if ret = IDYES
GoTo start
else
if ret = IDNO
GoTo finish
EndIf
EndIf
MsgBox "Cancel": finish: