private void textboxCelularAgregar_KeyPress(object sender, KeyPressEventArgs e)
 {
     if ((int)e.KeyChar == (int)Keys.Enter)
     {
         Registrar();
     }
     Validar.Solonumeros(e);
 }
Exemplo n.º 2
0
 private void textboxL1_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validar.Solonumeros(e);
 }
 private void textboxCelularModificar_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validar.Solonumeros(e);
 }
Exemplo n.º 4
0
 private void txtPrecio_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validar.Solonumeros(e);
 }
Exemplo n.º 5
0
 private void textBoxCelularFac_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validar.Solonumeros(e);
 }