private void DodajKlientaBtn_Click(object sender, EventArgs e)
 {
     Nowy_KlientForm NowyKlientForm = new Nowy_KlientForm(this);
     NowyKlientForm.Show();
 }
 private void edytujBtn_Click(object sender, EventArgs e)
 {
     Nowy_KlientForm kf = new Nowy_KlientForm(this.homeForm, klient);
     kf.Show();
 }
Example #3
0
        private void edytujBtn_Click(object sender, EventArgs e)
        {
            Nowy_KlientForm kf = new Nowy_KlientForm(this.homeForm, klient);

            kf.Show();
        }
Example #4
0
        private void DodajKlientaBtn_Click(object sender, EventArgs e)
        {
            Nowy_KlientForm NowyKlientForm = new Nowy_KlientForm(this);

            NowyKlientForm.Show();
        }