//takes user the Survey selection form and pass the list of surveys and list of survey questions. private void btnTakeSurvey_Click(object sender, EventArgs e) { SelectSurvey selectSurveyForm = new SelectSurvey(newSurveyList); this.Hide(); selectSurveyForm.ShowDialog(); }
//Opens the Take Survey List private void btnTakeSurvey_Click(object sender, EventArgs e) { SelectSurvey surveyForm = new SelectSurvey(); surveyForm.ShowDialog(); }