Computer Science Canada Exiting A Loop |
Author: | TheXploder [ Thu Feb 17, 2005 7:35 pm ] |
Post subject: | Exiting A Loop |
How do I end a exit a loop? |
Author: | Brightguy [ Thu Feb 17, 2005 10:17 pm ] |
Post subject: | Re: Exiting A Loop |
You can exit a loop with "Exit Do" or "Exit For". It's often better to use a While condition, though. (e.g. Do While <condition>) |
Author: | TheXploder [ Thu Feb 17, 2005 10:22 pm ] |
Post subject: | |
Ok thanks, I just needed to know the function. |