Beispiel #1
0
 public ClientWindow()
 {
     InitializeComponent();
     SQLRequester.getAllClientsNames(ref this.comboBox1);
     this.comboBox1.SelectedIndex = 0;
 }
Beispiel #2
0
 private void button2_Click(object sender, EventArgs e)
 {
     SQLRequester.FindExcursion(ref this.dataGridView2, this.comboBox1.Text, this.comboBox3.Text,
                                this.comboBox2.Text, this.comboBox5.Text);
 }
Beispiel #3
0
 private void button3_Click(object sender, EventArgs e)
 {
     SQLRequester.FindPreferences(ref this.dataGridView1, this.Text.ToCharArray()[0].ToString());
 }
Beispiel #4
0
 private void button1_Click(object sender, EventArgs e)
 {
     SQLRequester.AddPreference(ref this.dataGridView1, this.comboBox1.Text, this.comboBox3.Text,
                                this.comboBox2.Text, this.comboBox5.Text, this.Text.ToCharArray()[0].ToString());
 }