vba中的Application.Inputbox(Types)

时间:2016-05-01 10:43:26

标签: excel-vba vba excel

请告诉我,如何允许用户只在输入框中输入文本。我想在vba代码中使用 Application.Inputbox 命令。

1 个答案:

答案 0 :(得分:5)

类似的东西:

Sub GiveMeData()
    Dim s As String
    s = Application.InputBox(Prompt:="Type some text: ", Type:=2)
    MsgBox s
End Sub

使用此Type可以成为其他类型的有价值的代理,因为您可以解析字符串以测试是否符合格式要求。