可以的我刚做过,不过我用的是VB.NET代码给你,你看VB中是否一样:
Private Sub TEXTBOX_KeyPress(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyPressEventArgs) Handles txtAge.KeyPress
'Check wether the input one is number
If (e.KeyChar > "9" Or e.KeyChar < "0") Then
e.Handled = True
End If
End Sub
你还不如干脆用那IsNumeric来检查是否是纯数,不是就说输入有误!
判断到是可以,不过选中就很难了.
查ASCII码是不是在数字范围。。。。