//#region EventHandlers for frmDrillSettings //#endregion //#region DrillSettings Logic Methods //#endregion //// Simple form ==> Logic is contained in here //#region EventHandlers for frmAbout ///// </summary> ///// ///// </summary> ///// <author> Jeff Bunce </author> //internal void CloseAboutForm() //{ //} //#endregion #region Constructors /// <summary> /// Construct this object by instantiating all sub-forms /// </summary> /// <author> /// 26 April 2014 /// Jeff Bunce /// </author> /// <changelog> /// Created /// </changelog> internal CtrlAdmin(Ctrl control) { init(); LoadNumberOfAttempts(); adminControlForm = new frmAdminControl(this); // parentReportForm = new frmParentReport(); studentReportForm = new frmStudentReport(this); assignStudenstForm = new frmAssignStudents(this); addUserForm = new frmAddUser(this); modifyUserForm = new frmModifyUser(this); removeUsersForm = new frmRemoveUsers(this); addProblemSetForm = new frmAddProblemSet(this); removeProblemSetForm = new frmRemoveProblemSet(this); problemSetDefaultsForm = new frmProblemSetDefaults(this); drillScreenSettingsForm = new frmDrillScreenSettings(this); aboutForm = new frmAbout(); studentDetailForm = new frmStudentDetail ( this ); summaryReportForm = new frmSummary(this); }
internal void RemoveProblemSet() { removeProblemSet = new frmRemoveProblemSet(); removeProblemSet.ShowDialog(); }