private void btnNew_Click(object sender, EventArgs e) { SLS.Static.ID = 0; var child = new SLS.SavingsDeposit.Application.SavingsType(); child.FormClosed += closedSavingsType; child.ShowDialog(); }
private void btnUpdate_Click(object sender, EventArgs e) { if (SLS.Static.ID != 0) { var child = new SLS.SavingsDeposit.Application.SavingsType(); child.FormClosed += closedSavingsType; child.ShowDialog(); } else { MessageBox.Show("Please select data from the database.", "Error", MessageBoxButtons.OK); } }