private void txtprof_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validar.espacio(e);
 }
Exemplo n.º 2
0
 private void txtprof_KeyPress(object sender, KeyPressEventArgs e)
 {
     e.Handled = char.IsWhiteSpace(e.KeyChar);
     Validar.espacio(e);
     Validar.sololetras(e);
 }
Exemplo n.º 3
0
 private void txtemp_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validar.solonumeros(e);
 }
Exemplo 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);
 }
Exemplo n.º 6
0
 private void txtmedicamento_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validar.solonumeros(e);
     Validar.espacio(e);
 }
Exemplo 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);
 }
Exemplo 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);
 }
Exemplo 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);
 }
Exemplo n.º 14
0
 private void textBox1_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validar.solonumeros(e);
     // Validar.espacio(e);
 }