VB.Net文本框TextBox只允许输入数字判断
1. 该判断事件是TextBox的keypress 事件中进行判断的
成都创新互联主要从事成都做网站、网站建设、网页设计、企业做网站、公司建网站等业务。立足成都服务梁平,10多年网站建设经验,价格优惠、服务专业,欢迎来电咨询建站服务:028-86922220
2. 判断key(e.KeyChar)是不是数字、小数点、或者负号
3. 判断是否多次输入负号或者小数点
代码如下:
If IsNumeric(e.KeyChar) OrElse e.KeyChar = "." OrElse e.KeyChar = "-" Then
Dim strCash As String =TextBox1.Text
If strCash.Contains(".") Then
If strCash.Split(".").Length > 2 Then
e.Handled = True
End If
End If
If strCash.Contains("-") Then
If strCash.Split("-").Length > 2 Then
e.Handled = True
End If
If strCash.Substring(0, 1) <> "-" Then
e.Handled = True
End If
If strCash.Length > 1 Then
If strCash.Substring(1, 1) = "." Then
e.Handled = True
End If
End If
End If
ElseIf Not Asc(e.KeyChar) = Keys.Back Then
e.Handled = True
End If
代码如上,如果有问题,欢迎修改指正
网页题目:VB.Net文本框TextBox只允许输入数字判断
网站路径:http://scyanting.com/article/gjesce.html