private void AlmacenamientoTextBox_KeyPress(object sender, KeyPressEventArgs e) { Validar.SoloNumeros(e); }
private void ResoluciónTextBox_KeyPress(object sender, KeyPressEventArgs e) { Validar.SoloNumeros(e); }
private void CantidadTextBox_KeyPress(object sender, KeyPressEventArgs e) { Validar.SoloNumeros(e); }
private void DescripciónTextBox_KeyPress(object sender, KeyPressEventArgs e) { Validar.SoloLetras(e); }
private void NombreTextBox_KeyPress(object sender, KeyPressEventArgs e) { Validar.SoloLetras(e); }
private void ReferenciaTextBox_KeyPress(object sender, KeyPressEventArgs e) { Validar.SoloNumeros(e); }
private void tb_cantidad_KeyPress(object sender, KeyPressEventArgs e) { Validar.SoloNumeros(e); }