//Open Synonyms lesson form private void pictureBox3_Click(object sender, EventArgs e) { SynonymsLesson SynonymsLesson = new SynonymsLesson(); SynonymsLesson.wordLevelsForm = this; SynonymsLesson.mainLevelsForm = this.mainLevelsForm; SynonymsLesson.Show(); this.Hide(); }
//Done with all the questions go to next level public void GoToNextLevel() { SynonymsLesson SynonymsLesson = new SynonymsLesson(); SynonymsLesson.mainLevelsForm = mainLevelsForm; SynonymsLesson.wordLevelsForm = wordLevelsForm; this.Hide(); wordLevelsForm.lblhelp.Text = "Good job, now you have to play Synonyms && Antonyms Levels to unlock Homonyms level"; SynonymsLesson.Show(); }