private void BtnEkle_Click(object sender, EventArgs e) { try { if (Kontrol()) { Polikinlikler yeniPol = new Polikinlikler(); yeniPol.Aciklama = txtAciklama.Text; if (chkDurum.Checked) { yeniPol.Durum = "True"; } else { yeniPol.Durum = "False"; } yeniPol.PolikinlikAdi = txtPolikinlikAdi.Text; Veritabani.PolikinlikKaydetGuncelle(yeniPol, "Ekle"); MessageBox.Show("Polikinlik başarıyla kaydedildi.", "UYARI", MessageBoxButtons.OK, MessageBoxIcon.Information); this.Close(); txtPolikinlikAdi.Clear(); txtAciklama.Clear(); } else { MessageBox.Show("Boş alan bırakmayınız.", "UYARI", MessageBoxButtons.OK, MessageBoxIcon.Error); } } catch (Exception a) { MessageBox.Show("Bir hata oluştu:" + a.Message, "UYARI", MessageBoxButtons.OK, MessageBoxIcon.Warning); } }