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