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

        //####################################################END BUTTON btnPrintStudentList EVENTS####################################################

        //####################################################BUTTON btnPrintQuickCount EVENTS####################################################
        //event is raised when control is clicked
        private void btnPrintStudentQuickCountClick(object sender, EventArgs e)
        {
            SearchListPrintButtonClick ev = OnPrintStudentQuickCountClick;

            if (ev != null)
            {
                OnPrintStudentQuickCountClick();
            }
        }//----------------------------------------
Ejemplo n.º 2
0
        }//--------------------------------------

        //####################################################END BUTTON btnPrintStudentLoad EVENTS####################################################

        //####################################################BUTTON btnPrintStatement EVENTS####################################################
        //event is raised when control is clicked
        private void btnPrintStatementClick(object sender, EventArgs e)
        {
            SearchListPrintButtonClick ev = OnPrintStatementOfAccountClick;

            if (ev != null)
            {
                this.Cursor = Cursors.WaitCursor;

                OnPrintStatementOfAccountClick();

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