private void mnuAppointmentAudit_Click(object sender, EventArgs e)
        {
            string fileName = Application.StartupPath + "AppointmentAuditor.exe";

            if (File.Exists(fileName))
            {
                CommonFunctions.StartFile(fileName);
            }
            else
            {
                MessageBox.Show("Appointment Auditor not found at " + fileName + ". Could not load application.");
            }
        }