Example #1
0
 private void txtemp_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validar.solonumeros(e);
 }
Example #2
0
 private void txtcantidad_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validar.solonumeros(e);
     Validar.espacio(e);
 }
Example #3
0
 private void txtmedicamento_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 txtcodigo_empleado_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validar.solonumeros(e);
 }
Example #6
0
 private void textBox1_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validar.solonumeros(e);
     // Validar.espacio(e);
 }