Ejemplo n.º 1
0
        /// <summary>
        /// open screen to create "Partner by Special Type" Extract
        /// </summary>
        /// <param name="AParentForm"></param>
        public static void PartnerBySpecialTypeExtract(Form AParentForm)
        {
            TFrmPartnerBySpecialType frm = new TFrmPartnerBySpecialType(AParentForm);

            frm.CalledFromExtracts = true;
            frm.Show();
        }
Ejemplo n.º 2
0
        /// <summary>
        /// Create Partner By Special Type Extract
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void CreatePartnerBySpecialTypeExtract(System.Object sender, EventArgs e)
        {
            TFrmPartnerBySpecialType frm = new TFrmPartnerBySpecialType(FindForm());

            frm.CalledFromExtracts = true;
            frm.Show();
        }