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

        //event is raised when the button is click
        private void ctlPaymentOnRefresh()
        {
            try
            {
                this.Cursor = Cursors.WaitCursor;

                _cashieringManager.RefreshData(_userInfo);

                this.ShowSearchResultDialog();
            }
            catch (Exception ex)
            {
                RemoteClient.ProcStatic.ShowErrorDialog(ex.Message, "Error Refreshing Student's Data Manager");
            }
            finally
            {
                this.Cursor = Cursors.Arrow;
            }
        }//-------------------