频道直达 - 学院 - 下载 - 交易 - 特效 - 字库 - 手册 -排名-工具- 繁體
网页教学网站开发 设为首页
加入收藏
联系我们
建站搜索: 常用广告代码   用户注册 | 用户登陆
您当前的位置:中国建站之家 -> 网站开发设计技术教程 -> Asp.Net教程 -> IP地址输入控件 V1.0.1.1版(FOR Win Form)

IP地址输入控件 V1.0.1.1版(FOR Win Form)

作者:未知  来源:转载  发布时间:2005-7-20 10:21:45  发布人:acx

减小字体 增大字体

核心代码:

'只允许输入数字、"."
Private Sub txtField_KeyPress(ByVal sender As System.Object, ByVal e As System.Windows.Forms.KeyPressEventArgs) Handles txtField0.KeyPress, txtField1.KeyPress, txtField2.KeyPress, txtField3.KeyPress
If e.KeyChar = "." Then
Dim tx As TextBox = CType(sender, TextBox)
'最后的文本框不可以输入"."
'在其它文本框输入".",相当于输入"Tab"键,即光标到下一文本框
If tx.Text = "" Or tx.SelectedText <> "" Then
e.Handled = True
End If
If tx.Name <> "txtField3" Then
SendKeys.Send("{TAB}")
Else
'最后的文本框不可以输入"."
e.Handled = True
End If
ElseIf (Not IsNumeric(e.KeyChar)) And e.KeyChar <> ControlChars.Back Then
e.Handled = True
Else
Dim tx As TextBox = CType(sender, TextBox)
If (Len(tx.Text) = 2 And e.KeyChar <> ControlChars.Back And tx.SelectedText.Length = 0) Then
If tx.Name <> "txtField3" Then
SendKeys.Send("{TAB}")
End If
End If
End If
'控制ControlChars.Back退格键
Dim tx1 As TextBox = CType(sender, TextBox)
If (Len(tx1.Text) = 0 And e.KeyChar = ControlChars.Back) Then
Select Case tx1.Name
Case "txtField3"
If txtField3.Text = "" Then
txtField2.Focus()
End If
Case "txtField2"
If txtField2.Text = "" Then
txtField1.Focus()
End If
Case "txtField1"
If txtField1.Text = "" Then
txtField0.Focus()
End If
End Select
End If
End Sub

当运行时:

当出现错误时:

将本文收藏到QQ书签与更多好友分享
[打 印]
[] [返回上一页] [收 藏]
∷相关文章评论∷    (评论内容只代表网友观点,与本站立场无关!) [更多评论...]
精彩推荐
热门文章
· 注册码大全二
· 注册码大全四
· 注册码大全一
· 要10G免费网络硬盘的请进..
· 通过google 赶快来赚美金..
· 注册码大全十
· 头像-qq头像(qq新头像)4..
· 让你轻松架设FTP服务器1..
· 注册码大全三
· 梦幻背景图片7
· 卡通动物图片6
· 网页制作素材-按钮素材2..
· 让你轻松架设FTP服务器5..
· 风景图片8
· 注册码大全九
· 让你轻松架设FTP服务器2..
关注此文读者还看过
· 在ASP.NET页面中实现数据..
· 离开IDG 周鸿祎要做天使..
· 预防性维护MySQL数据库服..
· 《闪E》FLASH技术电子期..
· ASP+ 学习笔记 3
· 制作 Flash MTV 的小经验..
· 让网站活起来(4)
· 使用Photoshop制作环形文..
· 通过分析SQL语句的执行计..
· PHP+Oracle(OCI) 初步
· Web设计中如何使用XML数..
· 新浪曹国伟称将上线视频..
· Flash MX 编程深层次应用..
· ASP教程:ASP内建对象Re..
· Fireworks 实现雪花效果..
· 携程网公布06年第四季财..
相关文章
· Oracle/Oracle Forms 的多用..
· Zend Platform概述3P..
· Zend Platform概述2性..
· Zend Platform概述1
· 解析IP地址连接SQL数据库速..
· 简单form标准化实例——整体..
· 简单form标准化实例——语义..
· 浅议Web网页Form表单..
· 湖南在逃罪犯上网聊天被锁定..
· IP地址资源2010年将全部耗尽..
· 怎样查找对方的IP地址
· ASP.NET WEB form
· 如何将作为字符串保存的IP地..
· 一个提交form的小经验
· 域名专题 - 通过一个IP地址..
· 用ado连接Informix的资料
关于本站 - 网站帮助 - 广告合作 - 下载声明 - 友情连接 - 网站地图 - 人才招聘
网站合作、内容监督、商务咨询:QQ: 9576619
Copyright ? 2005--2008 中国建站之家版权所有
粤ICP备05092265号