InputBox Demo : InputBox « GUI « VB.Net Tutorial





InputBox Demo
public class InputBoxDemo
   public Shared Sub Main
        Dim PASSWORD As String
        PASSWORD = InputBox("Password", "Password Dialog")
        Do While PASSWORD <> "12345"
            PASSWORD = InputBox("Password", "Password Dialog")
        Loop

   End Sub
End class










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