VB 文本框限制

PrivateSubText2_KeyPress(KeyAsciiAsInteger)ki$=Chr(KeyAscii)SelectCaseIndexCase0'只允许输... Private Sub Text2_KeyPress(KeyAscii As Integer)
ki$ = Chr(KeyAscii)
Select Case Index
Case 0 '只允许输入数字
KeyAscii = IIf(ki Like "#", KeyAscii, 0)
End Select
MsgBox "只能输入数字"
End Sub

加上这段代码后我的文本框确实只能输入数字了,但是不能向里面粘贴,该怎么办?
CRTL+V的时候就提示 "只能输入数字" ,我该怎么办

FLY549583003 这段代码不管用啊,连字母都能输进去了
展开
 我来答
棘棘芽
2010-07-20 · TA获得超过563个赞
知道小有建树答主
回答量:608
采纳率:100%
帮助的人:555万
展开全部
Private KEB As Boolean
Private Sub Form_KeyDown(KeyCode As Integer, Shift As Integer)
Me.Caption = KeyCode

End Sub

Private Sub Text1_KeyDown(KeyCode As Integer, Shift As Integer)
If Shift = 2 And KeyCode = 86 Then
Dim temp As String, te As Integer
temp = Clipboard.GetText
If Len(temp) > 0 Then
For i = 1 To Len(temp)
te = Asc(Mid(temp, i, 1))
If te > 47 And te < 60 Then

Else
KEB = True
MsgBox temp
Exit For
End If
Next
End If
End If
End Sub

Private Sub Text1_KeyPress(KeyAscii As Integer)
If KEB = True Then Exit Sub
Select Case KeyAscii
Case 48 To 59
Case Else
KeyAscii = 0
End Select
End Sub

Private Sub Text1_KeyUp(KeyCode As Integer, Shift As Integer)
KEB = False
End Sub
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友f134c02
2010-07-20 · TA获得超过726个赞
知道小有建树答主
回答量:1042
采纳率:0%
帮助的人:611万
展开全部
改为下面这个试试看:
Private Sub Text2_KeyPress(KeyAscii As Integer)

if isnumeric(text2.text)=false then

MsgBox "只能输入数字"

end if

End Sub
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式