private void dailyEntryProductionToolStripMenuItem_Click(object sender, EventArgs e)
        {
            DailyEntry Daily_Entry = new DailyEntry(0);

            Daily_Entry.Show();
            this.Close();
        }
Exemple #2
0
        private void buttonDailyEntry_Click(object sender, EventArgs e)
        {
            DailyEntry Daily_Entry = new DailyEntry(0);

            Daily_Entry.Show();
            this.Close();
        }
        private void buttonDailyEntryReworkRatio_Click(object sender, EventArgs e)
        {
            DailyEntry daily_Entry = new DailyEntry(Item_Id);

            daily_Entry.Show();
            this.Close();
        }
        private void buttonDailyEntry_Click(object sender, EventArgs e)
        {
            DailyEntry DE = new DailyEntry(Item_Id);

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