Exemplo n.º 1
0
        }//-----------------------

        //################################################END LABEL lblDeloadScheduleServiceDetails EVENTS####################################################

        //################################################Label lblPrintStudentEnrolledList EVENTS####################################################
        //event is raised when lblPrintTeacherLoad is Clicked
        private void lnkPrintStudentEnrolledClick(object sender, EventArgs e)
        {
            try
            {
                this.Cursor = Cursors.WaitCursor;

                String strSemester = cboSemester.SelectedIndex >= 0 ? " - " + cboSemester.Text : "";

                _teacherLoadingManager.PrintStudentEnrolledList(_userInfo, _sysIdScheduleServiceDetails, this.cboYear.Text + strSemester);

                this.Cursor = Cursors.Arrow;
            }
            catch (Exception ex)
            {
                RemoteClient.ProcStatic.ShowErrorDialog(ex.Message, "Error Printing");
            }
        }//----------------------