以文本方式查看主题 - Foxtable(狐表) (http://foxtable.com/bbs/index.asp) -- 专家坐堂 (http://foxtable.com/bbs/list.asp?boardid=2) ---- 文本框的keypress中限制数字以外的输入,不能用backspace? (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=2927) |
-- 作者:mr725 -- 发布时间:2009/5/27 11:05:00 -- 文本框的keypress中限制数字以外的输入,不能用backspace? 文本框的keypress中限制数字以外的输入代码: if Char.IsNumber(e.KeyChar) = false then e.Cancel = True end if 在输入数字后,不能用BackSpace键退位,不知道为什么? 只能用鼠标全部选中再delete。。。。。 [此贴子已经被作者于2009-5-27 11:06:04编辑过]
|
-- 作者:狐狸爸爸 -- 发布时间:2009/5/27 11:15:00 -- dim c As string = e.Keychar if Char.isletter(c) then e.Cancel = true end if |
-- 作者: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编辑过]
|
-- 作者: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楼的可以了~ |
-- 作者:狐狸爸爸 -- 发布时间:2009/5/27 11:31:00 -- |