收藏本站 收藏本站
积木网首页 - 软件测试 - 常用手册 - 站长工具 - 技术社区
积木学院 > 程序开发 > C# > 正文

限制文本框的输入(只输入数字)

来源:互联摘选 日期:2008-06-03 06:42

  在.net里面可以用简单的代码,就能够限制文本框的输入(只能够输入数字),我们可限制只输入整数、只能输入小数等。以下为代码示范:

  只输入整数:



  Private Sub Text1_KeyPress(KeyAscii As Integer)
  Select Case KeyAscii   
  Case Asc("0") To Asc("9"), vbKeyBack
  'nop
  Case Else
  KeyAscii = 0
  End Select
  End Sub

  只输入小数:


  Private Sub Text1_KeyPress(KeyAscii As Integer)
  Select Case KeyAscii
  Case Asc("0") To Asc("9"), vbKeyBack
  'nop

  case Asc(".")'允许一个小数点
  If InStr(1, Text1.Text, ".") > 0 Then KeyAscii = 0

  Case Else
  KeyAscii = 0

  End Select
  End Sub

推荐阅读

 

热点信息

 
强悍的草根IT技术社区,这里应该有您想要的!
Copyright © 2010 Gimoo.Net. All Rights Rreserved  京ICP备05050695号