Example #1
0
 private void buttonSearch_Click_1(object sender, EventArgs e)
 {
     string jourDebut = cB_JourDebut.SelectedItem.ToString();
     string jourFin = cB_JourFin.SelectedItem.ToString();
     WindowResultSearch win = new WindowResultSearch(this, textBoxSearch.Text, jourDebut, jourFin, cB_CRJours.Checked, cB_DescrAct.Checked, cB_Acts.Checked);
     win.Show();
     this.Hide();
 }
Example #2
0
 private void buttonSearch_Click(object sender, EventArgs e)
 {
     WindowResultSearch win2 = new WindowResultSearch(this, textBoxSearch.Text, cB_JourDebut.Text, cB_JourFin.Text,cB_CRJours.Checked,cB_DescrAct.Checked,cB_Acts.Checked);
     win2.Show();
     this.Hide();
 }