Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

Only allow numbers in textbox

// This can be expanded to limit the key pressed to whatever you want
//In this scenario it only allows digits

   1  
   2   void textBox_KeyPress(object sender, KeyPressEventArgs e)
   3  {
   4  e.Handled = !(Char.IsDigit(e.KeyChar) || e.KeyChar == '\b');
   5  }
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS