Example #1
0
 private void ResoluciónTextBox_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validar.SoloNumeros(e);
 }
Example #2
0
 private void AlmacenamientoTextBox_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validar.SoloNumeros(e);
 }
Example #3
0
 private void ReferenciaTextBox_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validar.SoloNumeros(e);
 }
Example #4
0
 private void CantidadTextBox_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validar.SoloNumeros(e);
 }
 private void tb_cantidad_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validar.SoloNumeros(e);
 }