/// <summary> /// Refresh the data in the grid and the details after the database content was changed on the server /// </summary> public void RefreshAllData() { if ((FMainDS != null) && (FMainDS.ARecurringGiftBatch != null)) { // Remove all data from our DataSet object - the grid will go empty! FMainDS.ARecurringGiftBatch.Rows.Clear(); } try { FPetraUtilsObject.DisableDataChangedEvent(); LoadRecurringBatches(FLedgerNumber); TUC_RecurringGiftTransactions TransactionForm = ((TFrmRecurringGiftBatch)ParentForm).GetTransactionsControl(); if (TransactionForm != null) { ((TFrmRecurringGiftBatch)ParentForm).EnableTransactions((grdDetails.Rows.Count > 1)); // if the batch number = -1 then this is not a valid instance of TUC_GiftTransactions and we do not need to refresh if (TransactionForm.FBatchNumber != -1) { // This will update the transactions to match the current batch TransactionForm.RefreshData(); } } } finally { FPetraUtilsObject.EnableDataChangedEvent(); } }
private void HashTotalChanged(object sender, EventArgs e) { TTxtNumericTextBox txn = (TTxtNumericTextBox)sender; if (txn.NumberValueDecimal == null) { return; } Decimal HashTotal = Convert.ToDecimal(txtDetailHashTotal.NumberValueDecimal); Form p = ParentForm; if (p != null) { TUC_RecurringGiftTransactions t = ((TFrmRecurringGiftBatch)ParentForm).GetTransactionsControl(); if (t != null) { t.UpdateHashTotal(HashTotal); } } }
/// <summary> /// Refresh the data in the grid and the details after the database content was changed on the server /// </summary> public void RefreshAllData(bool AShowStatusDialogOnLoad = true, bool AIsMessageRefresh = false) { TFrmRecurringGiftBatch myParentForm = (TFrmRecurringGiftBatch)ParentForm; // Remember our current row position int nCurrentRowIndex = GetSelectedRowIndex(); int nCurrentBatchNumber = -1; if ((myParentForm != null) && (myParentForm.InitialBatchNumber > 0)) { nCurrentBatchNumber = myParentForm.InitialBatchNumber; myParentForm.InitialBatchNumber = -1; } else if (AIsMessageRefresh) { if (FPetraUtilsObject.HasChanges && !myParentForm.SaveChanges()) { string msg = String.Format(Catalog.GetString("A validation error has occured on the Recurring Gift Batches" + " form while trying to refresh.{0}{0}" + "You will need to close and reopen the Recurring Gift Batches form to see the new batch" + " after you have fixed the validation error."), Environment.NewLine); MessageBox.Show(msg, "Refresh Recurring Gift Batches"); return; } nCurrentBatchNumber = 1; } else if (FPreviouslySelectedDetailRow != null) { nCurrentBatchNumber = FPreviouslySelectedDetailRow.BatchNumber; } TFrmRecurringGiftBatch parentForm = (TFrmRecurringGiftBatch)ParentForm; Cursor prevCursor = null; if (parentForm != null) { prevCursor = parentForm.Cursor; } else { prevCursor = this.Cursor; } parentForm.Cursor = Cursors.WaitCursor; if ((FMainDS != null) && (FMainDS.ARecurringGiftBatch != null)) { // Remove all data from our DataSet object - the grid will go empty! FMainDS.ARecurringGiftBatch.Rows.Clear(); } try { FPetraUtilsObject.DisableDataChangedEvent(); FMainDS.Merge(TRemote.MFinance.Gift.WebConnectors.LoadARecurringGiftBatch(FLedgerNumber)); // Now we can select the gift batch we had before (if it still exists on the grid) for (int i = 0; (i < FMainDS.ARecurringGiftBatch.Rows.Count); i++) { if (FMainDS.ARecurringGiftBatch[i].BatchNumber == nCurrentBatchNumber) { DataView dv = ((DevAge.ComponentModel.BoundDataView)grdDetails.DataSource).DataView; Int32 RowNumberGrid = DataUtilities.GetDataViewIndexByDataTableIndex(dv, FMainDS.ARecurringGiftBatch, i) + 1; nCurrentRowIndex = RowNumberGrid; break; } } ShowDetails(nCurrentRowIndex); UpdateRecordNumberDisplay(); TUC_RecurringGiftTransactions TransactionForm = parentForm.GetTransactionsControl(); if (TransactionForm != null) { parentForm.EnableTransactions(grdDetails.Rows.Count > 1); // if the batch number = -1 then this is not a valid instance of TUC_GiftTransactions and we do not need to refresh if (TransactionForm.FBatchNumber != -1) { TransactionForm.ShowStatusDialogOnLoad = AShowStatusDialogOnLoad; // This will update the transactions to match the current batch TransactionForm.RefreshData(); TransactionForm.ShowStatusDialogOnLoad = true; } } } finally { FPetraUtilsObject.EnableDataChangedEvent(); parentForm.Cursor = prevCursor; } }