private void textBox3_Leave(object sender, EventArgs e)
        {
            float cantidad = 0;

            if (!float.TryParse(Precio_venta_textbox.Text, out cantidad))
            {
                MessageBox.Show("Debe de ingresar un número", "ERROR", MessageBoxButtons.OK, MessageBoxIcon.Error);
                Precio_venta_textbox.Focus();
                Precio_venta_textbox.SelectionStart  = 0;
                Precio_venta_textbox.SelectionLength = Precio_venta_textbox.Text.Length;
            }
        }
        private void button1_Click(object sender, EventArgs e)
        {
            float cantidad = 0;

            if (!float.TryParse(Precio_venta_textbox.Text, out cantidad))
            {
                MessageBox.Show("Debe de ingresar un número", "ERROR", MessageBoxButtons.OK, MessageBoxIcon.Error);
                Precio_venta_textbox.Focus();
                Precio_venta_textbox.SelectionStart  = 0;
                Precio_venta_textbox.SelectionLength = Precio_venta_textbox.Text.Length;
            }

            else if (this.Descripcion_textbox.Text == "" || this.Precio_venta_textbox.Text == "" || this.Descripcion_textbox.Text.Equals(" "))
            {
                new Mensajes().DebeLlenarTodosLosCampos();
                Descripcion_textbox.Focus();
                Descripcion_textbox.SelectionStart  = 0;
                Descripcion_textbox.SelectionLength = codigo_textbox.Text.Length;
            }
            else if (this.Precio_venta_textbox.Text.Equals("0") || this.Precio_venta_textbox.Text.Equals("0.00"))
            {
                MessageBox.Show("El precio de venta no puede ser cero.", "ERROR", MessageBoxButtons.OK, MessageBoxIcon.Error);
                Descripcion_textbox.Focus();
                Descripcion_textbox.SelectionStart  = 0;
                Descripcion_textbox.SelectionLength = codigo_textbox.Text.Length;
            }
            else
            {
                Productos producto = new Productos(
                    this.codigo_textbox.Text,
                    this.Descripcion_textbox.Text,
                    float.Parse(this.Precio_venta_textbox.Text),
                    0
                    );

                new DAOProductos().Insertproductos(producto);
                this.Close();
            }
        }