private void dailyEntryCustomerRejectionToolStripMenuItem_Click(object sender, EventArgs e)
        {
            DailyEntry_CustomerRejection DailyEntryCustRej = new DailyEntry_CustomerRejection(0);

            DailyEntryCustRej.Show();
            this.Close();
        }
        private void buttonEditCustomerRejectionRatioKPI_Click(object sender, EventArgs e)
        {
            DailyEntry_CustomerRejection DailyEntryCustRej = new DailyEntry_CustomerRejection(Item_Id);

            DailyEntryCustRej.Show();
            this.Close();
        }