how to use goto s

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • radom
    New Member
    • Feb 2008
    • 37

    how to use goto s

    Can some one please show me how to use gotos.
    in vb2008

    thanks
  • VBWheaties
    New Member
    • Feb 2008
    • 145

    #2
    Originally posted by radom
    Can some one please show me how to use gotos.
    in vb2008

    thanks

    example:
    Code:
    MyLabel: 
    'Do something 
    GoTo MyLabel
    If this doesnt work, its likely that it was removed. In place of GoTo's, you might want to create functions/methods instead. GoTo makes code difficult to read and debug.

    Comment

    Working...