private void Button_Bill_Click(object sender, EventArgs e)
        {
            FormBill FB = new FormBill();

            this.Hide();
            FB.Show();
        }
        private void Button_NewBill_Click(object sender, EventArgs e)
        {
            FormBill ok = new FormBill();

            ok.Show();
            this.Hide();
        }