Esempio n. 1
0
 //opens up a form to post a new question
 private void btnNieuw_Click(object sender, EventArgs e)
 {
     PlaatsHulpvraag form = new PlaatsHulpvraag(this, Administration);
     form.Show();
     questionOpened = true;
     this.Close();
 }
Esempio n. 2
0
 //Opens up the right form to place a question
 private void tsbtnPlaceQuestion_Click(object sender, EventArgs e)
 {
     Form form = new PlaatsHulpvraag(this, Administration);
     form.Show();
     this.Hide();
 }