Exemplo n.º 1
0
        /// Open screen for creating "Donor by Motivation" Extract
        public static void DonorByMotivationExtract(Form AParentForm, int ALedger)
        {
            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();
        }