Rss & SiteMap

Foxtable(狐表) http://www.foxtable.com

新一代数据库软件,完美融合Access、Foxpro、Excel、vb.net之优势,人人都能掌握的快速软件开发工具!
共5 条记录, 每页显示 10 条, 页签: [1]
[浏览完整版]

标题:文本框的keypress中限制数字以外的输入,不能用backspace?

1楼
mr725 发表于:2009/5/27 11:05:00
文本框的keypress中限制数字以外的输入代码:
if Char.IsNumber(e.KeyChar) = false then
        e.Cancel = True
end if
在输入数字后,不能用BackSpace键退位,不知道为什么? 只能用鼠标全部选中再delete。。。。。
[此贴子已经被作者于2009-5-27 11:06:04编辑过]
2楼
狐狸爸爸 发表于:2009/5/27 11:15:00
dim c As string = e.Keychar
if Char.isletter(c) then
   e.Cancel = true
end if
3楼
mr725 发表于:2009/5/27 11:17:00
这个可以:
If Char.IsPunctuation(e.KeyChar) OrElse Char.IsSymbol(e.KeyChar)  OrElse Char.IsLetter(e.KeyChar)  OrElse Char.IsLetter(e.KeyChar) Then
    e.Cancel = True
End If

你还可以在   e.Cancel = True 前加段提示框~
[此贴子已经被作者于2009-6-9 16:31:32编辑过]
4楼
mr725 发表于:2009/5/27 11:20:00
以下是引用狐狸爸爸在2009-5-27 11:15:00的发言:
dim c As string = e.Keychar
if Char.isletter(c) then
   e.Cancel = true
end if

我说的除了数字以外的都不允许输入~  呵呵,你这个只限制字母, 3楼的可以了~

5楼
狐狸爸爸 发表于:2009/5/27 11:31:00
图片点击可在新窗口打开查看
共5 条记录, 每页显示 10 条, 页签: [1]

Copyright © 2000 - 2018 foxtable.com Tel: 4000-810-820 粤ICP备11091905号

Powered By Dvbbs Version 8.3.0
Processed in .02344 s, 2 queries.