VBS的inputbox如何区分用户是点击了取消键还是输入为空点击了确定?想根据不同的事件有不同的响应。。。
展开全部
'''''已经通过测试的代码,分享给你
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
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
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询