关于VBA中InputBox的用法:如何让取消键有作用? 还有就是变量为什么不能定义成integer? 代码如下:
PrivateSubCommandButton1_Click()DimamountAsString‘这里变量为什么不能定义成integer?X:amount=InputB...
Private Sub CommandButton1_Click()
Dim amount As String ‘这里变量为什么不能定义成integer?
X:
amount = InputBox("请输入金额:")
If amount = "" Then
MsgBox "你没有输入金额,请重试!"
GoTo X
End If
If Not IsNumeric(amount) Then
MsgBox "只能输入数字,请重试!"
GoTo X
End If
End Sub 展开
Dim amount As String ‘这里变量为什么不能定义成integer?
X:
amount = InputBox("请输入金额:")
If amount = "" Then
MsgBox "你没有输入金额,请重试!"
GoTo X
End If
If Not IsNumeric(amount) Then
MsgBox "只能输入数字,请重试!"
GoTo X
End If
End Sub 展开
2个回答
展开全部
一、对【取消】键的判断:
amount = InputBox("提示", "标题", "缺省")
If StrPtr(amount) = 0 Then '这里就是判断【取消】按钮
MsgBox "点击了取消或按了 ESC 键"
End If
二、InputBox 默认返回的是 String 类型,所以一般情况下是不用 Integer 数据类型的。如果要用,有时就要对输入的字符进行判断。
amount = InputBox("提示", "标题", "缺省")
If StrPtr(amount) = 0 Then '这里就是判断【取消】按钮
MsgBox "点击了取消或按了 ESC 键"
End If
二、InputBox 默认返回的是 String 类型,所以一般情况下是不用 Integer 数据类型的。如果要用,有时就要对输入的字符进行判断。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
用amount = Application.InputBox("请输入金额:", Type:=1) ‘不能为空,只能输入数字,否则弹出错误 ,取消就amount =0
Private Sub CommandButton1_Click()
Dim amount As Integer
amount = Application.InputBox("请输入金额:", Type:=1)
End Sub
Private Sub CommandButton1_Click()
Dim amount As Integer
amount = Application.InputBox("请输入金额:", Type:=1)
End Sub
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询