/// <summary> /// opens Attendee List screen for pre selected conference /// </summary> public static void AttendeeListForSelectedConference(Form AParentForm) { if (FPartnerKey > 0) { TFrmAttendeeList.FPartnerKey = FPartnerKey; TFrmAttendeeList frm = new TFrmAttendeeList(AParentForm); frm.Show(); } else { MessageBox.Show(ERRORMESSAGE, String.Format("Attendee List"), MessageBoxButtons.OK, MessageBoxIcon.Warning); } }