博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
VB.NET TextBox 只允许输入1-100之间的整数 简洁篇
阅读量:6148 次
发布时间:2019-06-21

本文共 1127 字,大约阅读时间需要 3 分钟。

1     Dim Str As String = "" 2     Private Sub txtRecond_KeyUp(sender As System.Object, e As System.Windows.Forms.KeyEventArgs) Handles txtRecond.KeyUp 3         txtRecond.Text = Regex.Replace(txtRecond.Text, "[^0-9]", "") 4         If txtRecond.Text = "" Then 5             Return 6         End If 7         Try 8             Dim num As Integer = Integer.Parse(txtRecond.Text) 9             txtRecond.Text = num.ToString()10             If (num > 100) Or (num = 0) Then11                 txtRecond.Text = ""12             End If13         Catch ex As Exception14             txtRecond.Text = ""15         End Try16 17 18     End Sub19 20     Private Sub txtRecond_KeyPress(sender As System.Object, e As System.Windows.Forms.KeyPressEventArgs) Handles txtRecond.KeyPress21         If Char.IsDigit(e.KeyChar) Or e.KeyChar = Chr(8) Or e.KeyChar = "." Then22             If e.KeyChar = "." And InStr(txtRecond.Text, ".") > 0 Then23                 e.Handled = True24             Else25                 e.Handled = False26             End If27         Else28             e.Handled = True29         End If30 31     End Sub
View Code

 

转载地址:http://xhlya.baihongyu.com/

你可能感兴趣的文章
(二)Spring Boot 起步入门(翻译自Spring Boot官方教程文档)1.5.9.RELEASE
查看>>
Java并发编程73道面试题及答案
查看>>
企业级负载平衡简介(转)
查看>>
ICCV2017 论文浏览记录
查看>>
科技巨头的交通争夺战
查看>>
当中兴安卓手机遇上农行音频通用K宝 -- 卡在“正在通讯”,一直加载中
查看>>
Shell基础之-正则表达式
查看>>
JavaScript异步之Generator、async、await
查看>>
讲讲吸顶效果与react-sticky
查看>>
c++面向对象的一些问题1 0
查看>>
直播视频流技术名词
查看>>
IOC —— AOP
查看>>
比特币现金将出新招,推动比特币现金使用
查看>>
数据库的这些性能优化,你做了吗?
查看>>
某大型网站迁移总结(完结)
查看>>
部署SSL证书后,网页内容造成页面错误提示的处理办法
查看>>
MS SQLSERVER通用存储过程分页
查看>>
60.使用Azure AI 自定义视觉服务实现物品识别Demo
查看>>
Oracle 冷备份
查看>>
jq漂亮实用的select,select选中后,显示对应内容
查看>>