There are always situations that will require a break from a loop.

The best example I can think of is a deeply nested loop:

code:
For Each...in...
For Each...in...
While...
blah blah blah...

Loop
Next
Next

I'm sure we've all seen code like this or have coded ourselves into these situations. Sometimes nesting these statements is the quickest/best way to do something. In those cases when you're buried way down there, breaking out of the entire loop is the most elegant solution.

[ 24. January 2003, 22:11: Message edited by: Steve B ]
_________________________
Stevie