}//--------------------------

        //this procedure shows the special class update dialog
        private void ShowUpdateSpecialClassDialog(String id)
        {
            try
            {
                this.Cursor = Cursors.WaitCursor;

                using (SpecialClassUpdate frmUpdate = new SpecialClassUpdate(_userInfo, _specialManager.GetDetailsSpecialClassInformation(id), _specialManager))
                {
                    _frmSpecialClassSearch.WindowState = FormWindowState.Minimized;

                    frmUpdate.ShowDialog(this);

                    if (frmUpdate.HasUpdated || frmUpdate.HasDeleted)
                    {
                        this.ShowSearchResultDialog();
                    }

                    _frmSpecialClassSearch.WindowState = FormWindowState.Normal;
                }
            }
            catch (Exception ex)
            {
                RemoteClient.ProcStatic.ShowErrorDialog(ex.Message, "Error Loading Update Special Class Information Module");
            }
            finally
            {
                this.ctlManager.SetFocusOnSearchTextBox();

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