Blog

Allow only Number to textbox

Posted by Satyapriya Nayak Blogs | Windows Forms C# Dec 14, 2012
In this blog we will know how to allow only numbers to textbox.

In this blog we will know how to allow only numbers to textbox.

using System;
using
System.Collections.Generic;
using
System.ComponentModel;
using
System.Data;
using
System.Drawing;
using
System.Linq;
using
System.Text;
using
System.Windows.Forms;
namespace
Number_Character_validate_Csharp
{
   
public partial class Form1 : Form
   
{
       
public Form1()
       
{
           
InitializeComponent();
       
}
       
private void textBox1_KeyPress(object sender, KeyPressEventArgs e)
       
{
           
// Number Validation(only Number allowed)

            if (!System.Text.RegularExpressions.Regex.IsMatch(e.KeyChar.ToString(), "\\d+"))
           
{
               
e.Handled = true;
           
}  
       
}
   
}
}

post comment
     
COMMENT USING
PREMIUM SPONSORS
DynamicPDF™ product line allows you to dynamically generate PDF documents, merge PDF documents and add new content to existing PDF documents from within your applications.
SPONSORED BY
  • PDF reports have never been easier to create. With our included WYSIWYG Designer, you can layout your reports, set up your data source and let DynamicPDF ReportWriter do the rest.
Join a Chapter