Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
while loop and do loop
#4
Code:
Do While a = b
Loop
Code:
Do Until a = b
Loop
Code:
Do
Loop While a = b
Code:
Do
Loop Until a = b
Code:
While a = b
Wend

That about covers it...

The = sign can be replaced with: <=, >=, <>, < or >

You can add multiple conditions using: AND, OR or any other bit operator (XOR for example)
Reply


Messages In This Thread
while loop and do loop - by rhoward88 - 02-10-2005, 09:31 PM
while loop and do loop - by Sterling Christensen - 02-10-2005, 09:41 PM
while loop and do loop - by TheBigBasicQ - 02-10-2005, 10:08 PM
while loop and do loop - by Z!re - 02-10-2005, 10:40 PM

Forum Jump:


Users browsing this thread: 1 Guest(s)