示例#1
0
        private void ShowError(string msg)
        {
            Form error = new Error(msg);

            error.Show();
            Form newTry = new GetTotals();

            this.Close();
        }
示例#2
0
        private void ShowPurchasesInTotalRangeButton_Click(object sender, EventArgs e)
        {
            Form getTotals = new GetTotals();

            getTotals.Show();
        }