关于VB: 我想让几个textbox执行同一个语句,请问我应该怎样设置

具体是:我设这几个textbox的index为0,1,2,3这几个textbox的名称都为Text1然后我在其中一个textbox中写入:PrivateSubText1_... 具体是:我设这几个textbox的index为0,1,2,3
这几个textbox的名称都为Text1
然后我在其中一个textbox中写入:
Private Sub Text1_KeyPress(KeyAscii As Integer, Index As Integer)
If Not ((KeyAscii >= 48 And KeyAscii <= 57) Or (KeyAscii >= 65 And KeyAscii <= 70) Or (KeyAscii >= 97 And KeyAscii <= 102)) Then
KeyAscii = 0
End If
End Sub
语句的意思是:textbox中只能写入0123456789abcdef
但这个功能无法执行
请各位大佬帮帮小弟
展开
 我来答
帐号已注销
2007-05-06 · TA获得超过197个赞
知道小有建树答主
回答量:218
采纳率:0%
帮助的人:284万
展开全部
Private Sub Text1_KeyPress(Index As Integer, KeyAscii As Integer)
If Not ((KeyAscii >= 48 And KeyAscii <= 57) Or (KeyAscii >= 65 And KeyAscii <= 70) Or (KeyAscii >= 97 And KeyAscii <= 102)) Then
KeyAscii = 0
End If
End Sub

用这段代码试试看,在我这边可行的。
shaozhch
2007-05-06 · 超过20用户采纳过TA的回答
知道答主
回答量:61
采纳率:0%
帮助的人:0
展开全部
可以的啊 能通过调试啊 无法执行表现为什么啊
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
〆﹏无法无天
2007-05-06 · TA获得超过208个赞
知道答主
回答量:132
采纳率:0%
帮助的人:0
展开全部
Private Sub Text1_KeyPress(KeyAscii As Integer)
If Not ((KeyAscii >= 48 And KeyAscii <= 57) Or (KeyAscii >= 65 And KeyAscii <= 70) Or (KeyAscii >= 97 And KeyAscii <= 102)) Then
KeyAscii = 0
End If
End Sub
就这样了啊,你上面哪个Private Sub Text1_KeyPress(KeyAscii As Integer, ) 中的Index As Integer去掉就行了
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
俟军巨清霁
2020-04-09 · TA获得超过3602个赞
知道大有可为答主
回答量:3073
采纳率:27%
帮助的人:216万
展开全部
Private
Sub
Text1_KeyPress(Index
As
Integer,
KeyAscii
As
Integer)
If
Not
((KeyAscii
>=
48
And
KeyAscii
<=
57)
Or
(KeyAscii
>=
65
And
KeyAscii
<=
70)
Or
(KeyAscii
>=
97
And
KeyAscii
<=
102))
Then
KeyAscii
=
0
End
If
End
Sub
用这段代码试试看,在我这边可行的。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(2)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式