RosettaCodeData/Task/User-input-Text/VBA/user-input-text.vba
2019-09-12 10:33:56 -07:00

4 lines
166 B
Text

Public Sub text()
Debug.Print InputBox("Input a string")
Debug.Print InputBox("Input the integer 75000", "Input an integer", 75000, Context = "Long")
End Sub