文本框的keypress中限制数字以外的输入代码:
if Char.IsNumber(e.KeyChar) = false then
e.Cancel = True
end if
在输入数字后,不能用BackSpace键退位,不知道为什么? 只能用鼠标全部选中再delete。。。。。
[此贴子已经被作者于2009-5-27 11:06:04编辑过]
这个可以:
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编辑过]
以下是引用狐狸爸爸在2009-5-27 11:15:00的发言:
dim c As string = e.Keychar
if Char.isletter(c) then
e.Cancel = true
end if
我说的除了数字以外的都不允许输入~ 呵呵,你这个只限制字母, 3楼的可以了~