コード例 #1
0
        //##########################################END CLASS SubjectScheduleSearchList EVENTS###################################################
        #endregion

        #region Programmer-Defined Void Procedures

        //this procedure updates the special class data by date start and date end
        private void SelectByDateStartEndScheduleInformationDetails(String queryString)
        {
            try
            {
                this.Cursor = Cursors.WaitCursor;

                if (this.ctlManager.SchoolYearIndex != -1)
                {
                    _scheduleManager.SelectByDateStartEndScheduleInformationDetails(_userInfo, queryString, _dateStart,
                                                                                    _dateEnd, this.ctlManager.IsMarkedDeleted);
                }
            }
            catch (Exception ex)
            {
                RemoteClient.ProcStatic.ShowErrorDialog(ex.Message, "Error Retrieving Data");
            }
            finally
            {
                this.ctlManager.SetFocusOnSearchTextBox();

                this.Cursor = Cursors.Arrow;
            }
        }//--------------------------------