Excel VBA里限制文本框里的输入的数据为正整数,如果不是正整数提示错误。
展开全部
假设有文本框TextBox1
Private Sub TextBox1_KeyPress(ByVal KeyAscii As MSForms.ReturnInteger)
If KeyAscii < 48 Or KeyAscii > 57 Then KeyAscii = 0
End Sub
加上这个代码,文本框里信悔就只能输入正整数了,不用判断。
非要判断的话用这个代码,错误提示在滑手正A1里面表示
Private Sub TextBox1_Change()
If Val(TextBox1.Text) > 0 And InStr(TextBox1.Text, ".") = 0 Then
Range("A1").Value = "整数"
Else
Range("A1").Value = "非正整数薯唯"
End If
End Sub
Private Sub TextBox1_KeyPress(ByVal KeyAscii As MSForms.ReturnInteger)
If KeyAscii < 48 Or KeyAscii > 57 Then KeyAscii = 0
End Sub
加上这个代码,文本框里信悔就只能输入正整数了,不用判断。
非要判断的话用这个代码,错误提示在滑手正A1里面表示
Private Sub TextBox1_Change()
If Val(TextBox1.Text) > 0 And InStr(TextBox1.Text, ".") = 0 Then
Range("A1").Value = "整数"
Else
Range("A1").Value = "非正整数薯唯"
End If
End Sub
展开全部
假设以A1为例,
Sub test()
With Range("A1")
If IsNumeric(.Value) Then
If Int(.Value) <> .Value Then MsgBox "不是整数"
If .Value < 0 Then MsgBox "不是唤纯薯和者正整数"
Else
MsgBox "不是裤慧数字"
End If
End With
End Sub
Sub test()
With Range("A1")
If IsNumeric(.Value) Then
If Int(.Value) <> .Value Then MsgBox "不是整数"
If .Value < 0 Then MsgBox "不是唤纯薯和者正整数"
Else
MsgBox "不是裤慧数字"
End If
End With
End Sub
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
With Selection.Validation
.Delete
.Add Type:=xlValidateWholeNumber, AlertStyle:=xlValidAlertStop, _
Operator:=xlGreater, Formula1:="0"
.IgnoreBlank = True
.InCellDropdown = True
.InputTitle = ""
.ErrorTitle = ""
.InputMessage = ""
.ErrorMessage = ""
.ShowInput = True
.ShowError = True
End With
就州盯是实现笑基一碰迹谨下数据有效性
.Delete
.Add Type:=xlValidateWholeNumber, AlertStyle:=xlValidAlertStop, _
Operator:=xlGreater, Formula1:="0"
.IgnoreBlank = True
.InCellDropdown = True
.InputTitle = ""
.ErrorTitle = ""
.InputMessage = ""
.ErrorMessage = ""
.ShowInput = True
.ShowError = True
End With
就州盯是实现笑基一碰迹谨下数据有效性
更多追问追答
追问
请问你这是用的什么语言,我用的是VBA,有点不一样。
追答
就是VBA 不过是在excel单元格里输入的...
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询