public void button7_Click(object sender, EventArgs e)
        {
            BIll objb = new BIll();

            objb.Show();
            this.Hide();
        }
        public void button8_Click(object sender, EventArgs e)
        {
            BIll objb = new BIll();

            // objb.listBox1.Items.Add(a.Text);
            //    objb.listBox2.Items.Add(textBox3.Text);
            //   objb.listBox5.Items.Add(comboBox1.SelectedText);
            da.InsertCommand = new SqlCommand("insert into detailss values(@ITEMS,@QUANTITY,@PRICE)", cs);
            da.InsertCommand.Parameters.Add("ITEMS", SqlDbType.VarChar).Value = a.Text;
            da.InsertCommand.Parameters.Add("QUANTITY", SqlDbType.Int).Value  = comboBox1.Text;
            da.InsertCommand.Parameters.Add("PRICE", SqlDbType.Int).Value     = textBox3.Text;
            cs.Open();
            da.InsertCommand.ExecuteNonQuery();
            cs.Close();

            MessageBox.Show("Added");
        }