private void dailyEntryReworkToolStripMenuItem_Click(object sender, EventArgs e)
        {
            DailyEntry_ReworkRatio ReworkRatioEntryDaily = new DailyEntry_ReworkRatio(0);

            ReworkRatioEntryDaily.Show();
            this.Close();
        }
Exemple #2
0
        private void buttonEditReworkRatio_Click(object sender, EventArgs e)
        {
            DailyEntry_ReworkRatio ReworkRatioEntryDaily = new DailyEntry_ReworkRatio(Item_Id);

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