private void buttonBackDailyEntry_Click(object sender, EventArgs e)
        {
            InhouseRejectionKPI Inhouse = new InhouseRejectionKPI(Item_Id);

            Inhouse.Show();
            this.Close();
        }
コード例 #2
0
        private void inhouseRejectionRatioToolStripMenuItem_Click(object sender, EventArgs e)
        {
            InhouseRejectionKPI InhouseRej = new InhouseRejectionKPI(0);

            InhouseRej.Show();
            this.Close();
        }
コード例 #3
0
        private void buttonInhouseRejDashBoard_Click(object sender, EventArgs e)
        {
            InhouseRejectionKPI InhouseRej = new InhouseRejectionKPI(Item_Id);

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