Wednesday, September 23, 2009

C# Snippets: Limit Text Box Entry to Numeric Only

private void textBox1_KeyPress(object sender, KeyPressEventArgs e)
{
const char Delete = (char)8;
e.Handled = !Char.IsDigit(e.KeyChar) && e.KeyChar != Delete;
}
...

No comments:

Post a Comment

Followers