Blog

Allow only Character to textbox

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

In this blog we will know how to allow only characters 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 Form2 : Form
   
{
       
public Form2()
       
{
           
InitializeComponent();
       
}
       
private void textBox1_KeyPress(object sender, KeyPressEventArgs e)
       
{
           
// Character Validation(only Character allowed)
           
if (Char.IsControl(e.KeyChar) != true && Char.IsNumber(e.KeyChar) == true)
           
{
               
e.Handled = true;
           
}
       
}
   
}
}

post comment
     
COMMENT USING
PREMIUM SPONSORS
Over-C is a holistic consortium of communications and technology specialists. We build, deploy and market both business as well as consumer products and solutions.
Get Career Advice from Experts
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.