明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 1308|回复: 3

输入数据的问题

[复制链接]
发表于 2004-10-28 22:28:00 | 显示全部楼层 |阅读模式
我想在一个文本框中限制输入数字和英文,但下面的程序对输入“'”“/”等几个标点没有限制,请知道的高手指出错误,代码如下: Private Sub Text2_KeyPress(KeyAscii As Integer)
If (KeyAscii < 48 And KeyAscii > 122) Or (KeyAscii < 65 And KeyAscii > 57) Or (KeyAscii < 97 And KeyAscii > 90) Then
MsgBox "请输入正确的数据!", 48, "注意"
KeyAscii = 0
End If
End Sub
发表于 2004-10-29 07:53:00 | 显示全部楼层
Private Sub Text2_Change()
key = Asc(Right(Me.Text2.Text, 1))
If (key < 48 And key > 122) Or (key < 65 And key > 57) Or (key < 97 And key > 90) Then
MsgBox "请输入正确的数据!", 48, "注意"
'Me.Text2.Text = Left(Me.Text2.Text, Len(Me.Text2.Text) - 1)
End If
End Sub
发表于 2004-10-29 08:44:00 | 显示全部楼层
If Not ((KeyAscii < Asc("z") And KeyAscii > Asc("a")) Or (KeyAscii < Asc("Z") And KeyAscii > Asc("A")) Or (KeyAscii < Asc("9") And KeyAscii > Asc("0"))) Then
 楼主| 发表于 2004-10-29 20:31:00 | 显示全部楼层
tfyyf 说的也行,不过绕了一个圈子,还是lzh741206说的比较直观。谢谢二位!!
您需要登录后才可以回帖 登录 | 注册

本版积分规则

小黑屋|手机版|CAD论坛|CAD教程|CAD下载|联系我们|关于明经|明经通道 ( 粤ICP备05003914号 )  
©2000-2023 明经通道 版权所有 本站代码,在未取得本站及作者授权的情况下,不得用于商业用途

GMT+8, 2024-11-28 00:41 , Processed in 0.149608 second(s), 24 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表