private void button1_Click(object sender, EventArgs e) { Form19 f = new Form19(); if (radioButton1.Checked == true || radioButton2.Checked == true) { if (radioButton2.Checked == true) { f.comboBox1.Text = "Rozpoznania (ICD-10)"; if (f.ShowDialog() == DialogResult.OK) { textBox1.Text = f.wynik; } } if (radioButton1.Checked == true) { f.comboBox1.Text = "Procedury (ICD-9)"; if (f.ShowDialog() == DialogResult.OK) { textBox1.Text = f.wynik; } } } else { f.comboBox1.Text = "Wszystko"; if (f.ShowDialog() == DialogResult.OK) { textBox1.Text = f.wynik; } } }
private void button1_Click(object sender, EventArgs e) { Form19 f = new Form19(); f.comboBox1.Text = "Procedury (ICD-9)"; if (f.ShowDialog() == DialogResult.OK) { textBox1.Text = f.wynik; } }
private void button1_Click(object sender, EventArgs e) { Form19 f = new Form19(); f.comboBox1.Text = "Rozpoznania (ICD-10)"; if (f.ShowDialog() == DialogResult.OK) { textBox1.Text += " \n" + f.wynik; } }