private void buttonHastaBilgileri_Click(object sender, EventArgs e) { HastaBilgileri h = new HastaBilgileri(textBoxDosyaNo.Text); h.MdiParent = this.MdiParent; h.StartPosition = FormStartPosition.CenterScreen; h.Show(); }
private void buttonYeni_Click(object sender, EventArgs e) { textBoxDosyaNo.Text = ""; textBoxHastaAd.Text = ""; textBoxHastaSoyad.Text = ""; textBoxKurumAd.Text = ""; comboBoxOncekiislemler.SelectedIndex = -1; HastaBilgileri h = new HastaBilgileri(); h.MdiParent = this.MdiParent; h.StartPosition = FormStartPosition.CenterScreen; h.Show(); }