VBS的inputbox如何区分用户是点击了取消键还是输入为空点击了确定?想根据不同的事件有不同的响应。。。

2024-12-18 16:03:05
推荐回答(1个)
回答1:

'''''已经通过测试的代码,分享给你
InputMessage=InputBox("Please Input", "Input", "")
If InputMessage=vbEmpty Then
Buffer=MsgBox("Cancel!", VbOKOnly)
Else
If InputMessage="" Then
Buffer=MsgBox("OK, But Empty", VbOKOnly)
Else
Buffer=MsgBox(InputMessage, VbOKOnly)
End If
End If