Exemplo n.º 1
0
 private void AlmacenamientoTextBox_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validar.SoloNumeros(e);
 }
Exemplo n.º 2
0
 private void ResoluciónTextBox_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validar.SoloNumeros(e);
 }
Exemplo n.º 3
0
 private void CantidadTextBox_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validar.SoloNumeros(e);
 }
Exemplo n.º 4
0
 private void DescripciónTextBox_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validar.SoloLetras(e);
 }
Exemplo n.º 5
0
 private void NombreTextBox_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validar.SoloLetras(e);
 }
Exemplo n.º 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);
 }