Ejemplo n.º 1
0
        //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();
        }
Ejemplo n.º 2
0
        //Opens the Take Survey List
        private void btnTakeSurvey_Click(object sender, EventArgs e)
        {
            SelectSurvey surveyForm = new SelectSurvey();

            surveyForm.ShowDialog();
        }