|
-
August 20th, 1999, 03:44 AM
#1
Do loop control in VB
In a do while loop or DO UNTIL loop in VB, how can the control be passed down to the loop statement ignoring all statesments in between conditionally ?
i.e. what is the equivalent of the 'LOOP' statement in the foxpro Do while-enddo statement in VB ?
-
August 20th, 1999, 03:48 AM
#2
Re: Do loop control in VB
I don't know exactly what you mean by "...the control be passed down to the loop statement ignoring all statesments in between conditionally ", but you can exit a loop using the Exit Do statement and you can jump to the loop statement using goto:
do while...
if... then goto nextstep
nextstep:
Loop
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|