//####################################CLASS FilteredStudentSearch EVENTS####################################
        //event is raised when the class is loaded
        protected override void ClassLoad(object sender, EventArgs e)
        {
            this.SetDataGridViewSource(_studentManager.InitializeFilterPrintStatementOfAccount());

            this.lblSelected.Text = this.dgvList.Rows.Count.ToString();

            _selected = this.dgvList.Rows.Count;

            base.ClassLoad(sender, e);

            this.dgvList.ReadOnly = false;
        }//----------------------------