' Visual Basic 2008 9.0 .NET Examples - Introduction to Iterations - Introduction to Visual Basic : Module Example4 Sub Main() Dim startValue As Integer = 10 Dim endValue As Integer = 15 ' Dim value As Integer = startValue - 1 Do While value < endValue value = value + 1 Console.WriteLine(value) Loop ' Console.ReadLine() End Sub End Module ' Visit www.studyvb.com for more examples. Copyright 2003-2008 De Wolf.