Exemplo n.º 1
0
 private void txtMarca_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validaciones.SoloLetras(e);
 }
Exemplo n.º 2
0
 private void txtCantidad_KeyUp(object sender, KeyEventArgs e)
 {
     Validaciones.ValidarCampoEntero((TextBox)sender);
 }
Exemplo n.º 3
0
 private void txtPrecio_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validaciones.SoloNumeros(e);
 }
Exemplo n.º 4
0
 private void textBox2_KeyUp(object sender, KeyEventArgs e)
 {
     Validaciones.ValidarCampoDecimal((TextBox)sender);
 }
Exemplo n.º 5
0
 private void textBox3_TextChanged(object sender, EventArgs e)
 {
     Validaciones.ValidarCampoEntero((TextBox)sender);
 }
 private void TxtBuscarCodigoBarra_PreviewTextInput(object sender, TextCompositionEventArgs e) => Validaciones.SoloNumeros(sender, e);
Exemplo n.º 7
0
 private void txtDescripcion_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validaciones.sololetras(e);
 }
Exemplo n.º 8
0
 private void txtNombre_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validaciones.sololetras(e);
 }