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