Example #1
0
 private void txt_tel_prove_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validacion.NumeroEnteros(e);
 }
Example #2
0
 private void txt_hasta_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validacion.NumeroDecimal(e);
 }
Example #3
0
File: Item.cs Project: NAM392/PROG3
 private void txt_CodProd_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validacion.NumeroEnteros(e);
 }