Beispiel #1
0
 private void txtCedula_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validaciones.SoloNumerosyLetras(e);
     if ((int)e.KeyChar == (int)Keys.Enter)
     {
         e.Handled = true;
         this.cbSexo.Focus();
     }
 }