Mega Code Archive

 
Categories / VB.Net Tutorial / GUI
 

Use InputBox to read string value

Module Module1     Sub Main()         Dim Name As String         Name = InputBox("Enter name")         Console.WriteLine(Name)     End Sub End Module asdf