有关VB中TextBox控件的问题
4个回答
展开全部
更简单的办法,先声明一个常数,包含你限制输入的字符,在用户键入时做判断用户输入的是否在其中
Const xStr As String = "0123456789" '如果想限制其他的字符就都写进这里,如新身份证号中会有字母x,把x加进来,用户就只能输入数字和x了
Private Sub Text1_KeyPress(KeyAscii As Integer)
KeyAscii = IIf(InStr(xStr & Chr(8), Chr(KeyAscii)), KeyAscii, 0)
End Sub
Const xStr As String = "0123456789" '如果想限制其他的字符就都写进这里,如新身份证号中会有字母x,把x加进来,用户就只能输入数字和x了
Private Sub Text1_KeyPress(KeyAscii As Integer)
KeyAscii = IIf(InStr(xStr & Chr(8), Chr(KeyAscii)), KeyAscii, 0)
End Sub
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
改进2楼的代码:
Private Sub Text2_KeyPress(KeyAscii As Integer)
Const xStr As String = "0123456789.-"
If KeyAscii = 46 And InStr(Text2, ".") > 0 Then KeyAscii = 0 '只能输入一个小数点
If KeyAscii = 45 And Len(Text2) > 0 Then KeyAscii = 0 '只能在最前面输入-号
If KeyAscii = 8 Then Exit Sub '退格键不受限制
KeyAscii = IIf(InStr(xStr, Chr(KeyAscii)), KeyAscii, 0) '只能输入规定的字符
End Sub
Private Sub Text2_KeyPress(KeyAscii As Integer)
Const xStr As String = "0123456789.-"
If KeyAscii = 46 And InStr(Text2, ".") > 0 Then KeyAscii = 0 '只能输入一个小数点
If KeyAscii = 45 And Len(Text2) > 0 Then KeyAscii = 0 '只能在最前面输入-号
If KeyAscii = 8 Then Exit Sub '退格键不受限制
KeyAscii = IIf(InStr(xStr, Chr(KeyAscii)), KeyAscii, 0) '只能输入规定的字符
End Sub
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
Private Sub textbox1_KeyPress(KeyAscii As Integer)
If KeyAscii <> vbKeyBack And KeyAscii < 48 Or KeyAscii > 57 And KeyAscii <> 13 Then
KeyAscii = 0
End If
End Sub
利用 keyascii 来实现就好,建议还是自己具体操作一下就知道。
If KeyAscii <> vbKeyBack And KeyAscii < 48 Or KeyAscii > 57 And KeyAscii <> 13 Then
KeyAscii = 0
End If
End Sub
利用 keyascii 来实现就好,建议还是自己具体操作一下就知道。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
Private Sub Text1_Change(Index As Integer)
if text1.text<>"" then
if ltrim(str(val(text1.text)))<>text1.text then text1.text=""
end if
End Sub
if text1.text<>"" then
if ltrim(str(val(text1.text)))<>text1.text then text1.text=""
end if
End Sub
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询