Use InputBox to read Double value : InputBox « GUI « VB.Net Tutorial






Module Module1

    Sub Main()
        Dim Salary As Double
        Salary = InputBox("Enter salary")
        Console.WriteLine(Salary)
    End Sub

End Module








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