Nov 28, 2003 #1 K KeenR1214 Newcomer Joined Nov 28, 2003 Messages 4 How does one "skip" over lines of code in VB.NET? Ex. Private Sub Btn_click If a = 1 than Skip to end of this sub end if do this do this do this but don't really because a = 1 so this is skipped do this do this skip to here End Sub
How does one "skip" over lines of code in VB.NET? Ex. Private Sub Btn_click If a = 1 than Skip to end of this sub end if do this do this do this but don't really because a = 1 so this is skipped do this do this skip to here End Sub
Nov 29, 2003 #4 E Engine252 Regular Joined Jan 8, 2003 Messages 99 exit sub if you got more questions just ask. there's no such thing as stupid questions only stupid answers. it's by giving the knowledge of good programmers the young new ones that greate software will be written in the future ;-)
exit sub if you got more questions just ask. there's no such thing as stupid questions only stupid answers. it's by giving the knowledge of good programmers the young new ones that greate software will be written in the future ;-)
Nov 29, 2003 #5 R Robby Ultimate Contributor Joined Nov 17, 2002 Messages 3,460 Location Montreal, Ca. Instead of Exit Sub you should structure your If statement properly.