' Visual Basic 2008 9.0 .NET Examples - Iterations - Introduction to Visual Basic : Module Example5 Sub Main() Console.WriteLine("Highest Value ?") Dim highest As Integer = Console.ReadLine() ' Console.WriteLine("Row :") Dim value As Integer Do value = value + 1 Console.WriteLine(value) Loop Until value >= highest ' Console.ReadLine() End Sub End Module ' Visit www.studyvb.com for more examples. Copyright 2003-2008 De Wolf.