}//------------------------------- //##############################################END LINKLABEL lnkAddDetails EVENTS#################################################### //##############################################LINKLABEL lnkPrintList EVENTS######################################################### //event is raised when the link label is clicked private void lnkPrintListClick(object sender, EventArgs e) { try { this.Cursor = Cursors.WaitCursor; _scheduleManager.PrintStudentEnrolledList(_userInfo, _schedInfo, this.cboYearSemester.Text, _scheduleManager.GetBySysIdScheduleScheduleDetailsTable(_schedInfo.ScheduleSysId, _schedInfo.IsIrregularModular)); this.Cursor = Cursors.Arrow; } catch (Exception ex) { RemoteClient.ProcStatic.ShowErrorDialog(ex.Message, "Error Loading Print Student Enrolled List."); } }//------------------------