コード例 #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();
        }
コード例 #2
0
ファイル: EntryForm.cs プロジェクト: brianjcalhoun/BOC_Survey
        //Opens the Take Survey List
        private void btnTakeSurvey_Click(object sender, EventArgs e)
        {
            SelectSurvey surveyForm = new SelectSurvey();

            surveyForm.ShowDialog();
        }