private void ManageHistoryToolStripMenuItem_Click(object sender, EventArgs e)
        {
            var historyManager = new HistoryManagerForm();

            try
            {
                historyManager.ShowDialog();
            }
            catch (System.Data.ConstraintException)
            {
            }
        }
Esempio n. 2
0
        private void manageHistoryToolStripMenuItem_Click(object sender, EventArgs e)
        {
            HistoryManagerForm historyFormThing = new HistoryManagerForm();

            historyFormThing.ShowDialog();
        }
Esempio n. 3
0
        private void manageHistoryToolStripMenuItem_Click(object sender, EventArgs e)
        {
            var histMgrForm = new HistoryManagerForm();

            histMgrForm.ShowDialog();
        }
Esempio n. 4
0
        private void toolStripButton8_Click(object sender, EventArgs e)
        {
            var itemsForm = new HistoryManagerForm();

            itemsForm.ShowDialog();
        }