How do i use inputbox function in VB.Net?
4100
22-Nov-2010
Amit Singh
22-Nov-2010Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs)_
Handles Button1.Click
Dim Show As String
Show = InputBox("Enter your name")
TextBox1.Text = Show
End Sub