Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. // Hay más acá: https://github.com/SidVal
  2.  
  3. private void txtLegajo_KeyPress(object sender, KeyPressEventArgs e)
  4.         {
  5.             if (!char.IsControl(e.KeyChar) && !char.IsDigit(e.KeyChar)) //&& (e.KeyChar != '.')) ++ Este código es el que sirve para validar que se coloquen sólo valores numéricos!
  6.             {
  7.                 e.Handled = true;
  8.             }
  9.         }