Read Integer value from Keyboard : InputBox « GUI « VB.Net Tutorial






Module Module1

    Sub Main()
        Dim Age As Integer
        Console.Write("Age: ")
        Age = Console.ReadLine()
        Console.WriteLine(Age)
    End Sub

End Module
Age: 12
12








14.61.InputBox
14.61.1.Use InputBox to read Integer value
14.61.2.Use InputBox to read Double value
14.61.3.Read Integer value from Keyboard
14.61.4.Use InputBox to read string value
14.61.5.Get input from InputBoxGet input from InputBox
14.61.6.InputBox DemoInputBox Demo