private void txtprof_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validar.espacio(e);
 }
Esempio n. 2
0
 private void txtprof_KeyPress(object sender, KeyPressEventArgs e)
 {
     e.Handled = char.IsWhiteSpace(e.KeyChar);
     Validar.espacio(e);
     Validar.sololetras(e);
 }
Esempio n. 3
0
 private void txtemp_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validar.solonumeros(e);
 }
Esempio n. 4
0
 private void txtnom_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validar.sololetras(e);
 }
 private void txtNombreRol_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validar.espacio(e);
 }
Esempio n. 6
0
 private void txtmedicamento_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validar.solonumeros(e);
     Validar.espacio(e);
 }
Esempio n. 7
0
 private void txtcantidad_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validar.solonumeros(e);
     Validar.espacio(e);
 }
 private void codigomed_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validar.solonumeros(e);
     Validar.espacio(e);
 }
 private void Modifcar_medicamento_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validar.espacio(e);
 }
Esempio n. 10
0
 private void txtNombreServicio_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validar.sololetras(e);
 }
 private void Generar_factura_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validar.espacio(e);
 }
Esempio n. 12
0
 private void txtcontraseña_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validar.espacio(e);
 }
 private void txtcodigo_empleado_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validar.solonumeros(e);
 }
Esempio n. 14
0
 private void textBox1_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validar.solonumeros(e);
     // Validar.espacio(e);
 }