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