/// Open screen for creating "Donor by Motivation" Extract (cross ledger) public static void DonorByMotivationExtractCrossLedger(Form AParentForm) { TFrmDonorByMotivation frm = new TFrmDonorByMotivation(AParentForm); frm.CalledFromExtracts = true; frm.Show(); }
/// <summary> /// Create Donor By Motivation Extract /// </summary> /// <param name="sender"></param> /// <param name="e"></param> private void CreateDonorByMotivationExtract(System.Object sender, EventArgs e) { TFrmDonorByMotivation frm = new TFrmDonorByMotivation(FindForm()); frm.CalledFromExtracts = true; frm.Show(); }