Пример #1
0
 private void txtNombre_KeyPress(object sender, KeyPressEventArgs e)
 {
     Filtros.AlfanumericoSpace(e);
     if (e.KeyChar == (char)Keys.Enter)
     {
         btnAceptar_Click(sender, e);
     }
 }
Пример #2
0
 private void txtComentarios_KeyPress(object sender, KeyPressEventArgs e)
 {
     Filtros.AlfanumericoSpace(e);
 }