RosettaCodeData/Task/User-input-Text/VBA/user-input-text.vba
2023-07-01 13:44:08 -04: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