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






Module Module1

    Sub Main()
        Dim Name As String

        Name = InputBox("Enter name")

        Console.WriteLine(Name)
    End Sub

End Module
asdf








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