//Open the Sentence Structure Lesson Form private void picSS_Click(object sender, EventArgs e) { SS_lesson SS_lesson = new SS_lesson(); SS_lesson.sentenceLevelsForm = this; SS_lesson.mainLevelsForm = this.mainLevelsForm; this.Hide(); SS_lesson.Show(); }
public void GoToNextLevel() { SS_lesson SSLesson = new SS_lesson(); SSLesson.mainLevelsForm = mainLevelsForm; SSLesson.sentenceLevelsForm = sentenceLevelsForm; sentenceLevelsForm.lblhelp.Text = "Good job, now you have to play Sentence Structure Level to unlock Paragraph Coherence level"; //sentenceLevelsForm.Show(); SSLesson.Show(); this.Hide(); //SSLesson.Show(); }