Delphi Basics : Break command
Description The Break procedure forces a jump out of the setof statements within a loop. Like the Goto statement, it should be used with caution. The next statement that is executed is the one following the loop terminator. For example: for i := 1 to 10 d...