' Visual Basic 2008 9.0 .NET Examples - Selections - Introduction to Visual Basic : Module Example7 Sub Main() Console.WriteLine("Value ?") Dim value As Integer = Console.ReadLine() ' Select Case value Case Is > 10 Console.WriteLine("More than 10.") Case Is > 100 Console.WriteLine("More than 100.") Case Is > 1000 Console.WriteLine("More than 1000.") End Select ' Console.ReadLine() End Sub End Module ' Visit www.studyvb.com for more examples. Copyright 2003-2008 De Wolf.