private void txtprof_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validar.espacio(e);
 }
Example #2
0
 private void txtprof_KeyPress(object sender, KeyPressEventArgs e)
 {
     e.Handled = char.IsWhiteSpace(e.KeyChar);
     Validar.espacio(e);
     Validar.sololetras(e);
 }
Example #3
0
 private void txtemp_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validar.solonumeros(e);
 }
Example #4
0
 private void txtnom_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validar.sololetras(e);
 }
 private void txtNombreRol_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validar.espacio(e);
 }
Example #6
0
 private void txtmedicamento_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validar.solonumeros(e);
     Validar.espacio(e);
 }
Example #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);
 }
Example #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);
 }
 private void txtcontraseña_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validar.espacio(e);
 }
 private void txtcodigo_empleado_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validar.solonumeros(e);
 }
Example #14
0
 private void textBox1_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validar.solonumeros(e);
     // Validar.espacio(e);
 }