/// <summary> /// open screen to create "Event" Extract /// </summary> public static void PartnerByEventExtract(Form AParentForm) { TFrmPartnerByEvent frm = new TFrmPartnerByEvent(AParentForm); frm.CalledFromExtracts = true; frm.Show(); }
/// <summary> /// Create Partner By Conference Extract /// </summary> /// <param name="sender"></param> /// <param name="e"></param> private void CreatePartnerByEventExtract(System.Object sender, EventArgs e) { TFrmPartnerByEvent frm = new TFrmPartnerByEvent(FindForm()); frm.CalledFromExtracts = true; frm.CalledForConferences = true; frm.Show(); }