public Form1(MainWindow frm)
        {
            InitializeComponent();
            ths = frm;
            checkOutForm = new Check_Out(this);
            checkInForm = new Check_In(this);
            CancelForm = new Cancel_Reservation(this);
            LateNoticeForm = new Late_Notice(this);
            FeedbackForm = new Feedback(this);
            AboutForm = new About_DDS_IT_Equipment_Checkout(this);
            ReservationForm = new Reservation(this);

            this.helpProvider1.SetShowHelp(this.CheckOut_btn, true);
            this.helpProvider1.SetHelpString(this.CheckOut_btn, "Please select a reservation and click here");
        }
 public Conference_Room_Set_Ups(MainWindow frm)
 {
     ths = frm;
     InitializeComponent();
 }