Skip to Content
Visual Basic 2015 Unleashed
book

Visual Basic 2015 Unleashed

by Alessandro Del Sole
July 2015
Intermediate to advanced
1300 pages
87h 27m
English
Sams
Content preview from Visual Basic 2015 Unleashed

Loops

As in the previous versions of the language, Visual Basic 2015 offers two kinds of loops: Do..Loop and While..End While. This section describes them both.

Do..Loop

The Do..Loop is the most frequently used loop in Visual Basic, and it’s also the most flexible. This loop can have two behaviors: repeating a set of actions until a condition is false and repeating a set of actions until a condition is true. The first scenario is accomplished by using a Do While statement, as demonstrated in Listing 4.3.

LISTING 4.3 Performing a Do While Loop

Sub LoopWhileDemo()    Dim max As Integer = 0    Do While max < Integer.MaxValue        max += 1        'Do something else here        If max = 7000000 Then Exit Do    

Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Beginning Visual Basic 2015

Beginning Visual Basic 2015

Bryan Newsome

Publisher Resources

ISBN: 9780134196664Purchase book