Mega Code Archive

 
Categories / VisualBasic Script / Language Basics
 

A line number is simply a number placed at the beginning of a line to identify it For example, consider this demonstration

Sub Demo_of_GoTo() 1     If MsgBox("Go to line 1?", vbYesNo) = vbYes Then         GoTo 1     End If End Sub