Beispiel #1
0
 private void txtnom_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validar.sololetras(e);
     if (txtnom.Text == " ")
     {
         txtdescripcion.Text = " ";
     }
 }
Beispiel #2
0
 private void txtprof_KeyPress(object sender, KeyPressEventArgs e)
 {
     e.Handled = char.IsWhiteSpace(e.KeyChar);
     Validar.espacio(e);
     Validar.sololetras(e);
 }
Beispiel #3
0
 private void txtnom_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validar.sololetras(e);
 }
Beispiel #4
0
 private void txtNombreServicio_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validar.sololetras(e);
 }