//Event that calls the survey Maint form and passes the question list made with it
        private void btnCreateSurvey_Click(object sender, EventArgs e)
        {
            SurveyMaintenance surveyMaintenance = new SurveyMaintenance(newQuestionList);

            this.Hide();
            surveyMaintenance.ShowDialog();
        }
Example #2
0
        //Opens the Survey Maintenance Form
        private void btnCreateSurvey_Click(object sender, EventArgs e)
        {
            SurveyMaintenance surveyMaintenance = new SurveyMaintenance();

            surveyMaintenance.ShowDialog();
        }