private void BtnBuscarProductos_Click(object sender, EventArgs e)
        {
            if (string.IsNullOrEmpty(txtbuscarproducto.Text))
            {
                FrmInventario FrmI = new FrmInventario();
                FrmI.ShowDialog();

                if (FrmI.DialogResult == DialogResult.OK)
                {
                    txtCodigoPro.Text = FrmI.dgvInventario.Rows[FrmI.dgvInventario.CurrentRow.Index].Cells[0].Value.ToString();
                    txtDescrip.Text   = FrmI.dgvInventario.Rows[FrmI.dgvInventario.CurrentRow.Index].Cells[1].Value.ToString();
                    txtPrecio.Text    = FrmI.dgvInventario.Rows[FrmI.dgvInventario.CurrentRow.Index].Cells[4].Value.ToString();
                    txtCantidad.Focus();
                    con.Close();
                }
                this.txtcantidaddeproductos.Text = this.dgvFacturacion.Rows.Count.ToString("N0");
            }

            else
            {
                MySqlCommand cmd = new MySqlCommand(" SELECT * FROM Inventario where IDInventario = @IDInventario", con);
                cmd.Parameters.AddWithValue("IDInventario", txtbuscarproducto.Text);

                con.Open();
                MySqlDataReader registro = cmd.ExecuteReader();
                if (registro.Read())
                {
                    txtCodigoPro.Text = registro["IDInventario"].ToString();
                    txtDescrip.Text   = registro["NombreProducto"].ToString();
                    txtPrecio.Text    = registro["Precio"].ToString();
                    txtCantidad.Focus();
                }
                con.Close();
            }
        }
        private void verYEditarProductosToolStripMenuItem_Click(object sender, EventArgs e)
        {
            FrmInventario FrmI = new FrmInventario();

            FrmI.Show();
        }