private void btnEkle_Click(object sender, EventArgs e) { if (cmbMarka.Text == "" || txtModel.Text == "") { MessageBox.Show("Marka ve Model Giriniz"); } else { if (con.State == ConnectionState.Closed) { con.Open(); } OleDbCommand komut = new OleDbCommand(); komut.Connection = con; komut.CommandText = "insert into MODEL(MODEL_ADI,MARKA_ID) values (@MODEL_ADI,@MARKA_ID)"; komut.Parameters.AddWithValue("@MODEL_ADI", txtModel.Text); komut.Parameters.AddWithValue("@MARKA_ID", markaid); komut.ExecuteNonQuery(); con.Close(); DialogResult cevap = MessageBox.Show("Kayıt Yapıldı \nBaşka Kayıt Yapmak İster Misiniz?", "Bilgi Kutusu", MessageBoxButtons.YesNoCancel); if (DialogResult.No == cevap) { YeniAraçKaydı yenikayit = new YeniAraçKaydı(); this.Hide(); yenikayit.ShowDialog(); } else if (DialogResult.Yes == cevap) { txtMarka.Clear(); } } }
private void btnGeri_Click(object sender, EventArgs e) { YeniAraçKaydı yenikayit = new YeniAraçKaydı(); this.Hide(); yenikayit.ShowDialog(); }
private void btnAracEkle_Click(object sender, EventArgs e) { YeniAraçKaydı arackaydı = new YeniAraçKaydı(); this.Hide(); arackaydı.ShowDialog(); this.Show(); }
private void button1_Click(object sender, EventArgs e) { if (textBox1.Text == "") { MessageBox.Show("Marka ve Model Giriniz"); } else { OleDbCommand komut2 = new OleDbCommand(); komut2.Connection = con; komut2.CommandText = "select * from VITES_TURU where VITES_TURU='" + textBox1.Text + "'"; if (con.State == ConnectionState.Closed) { con.Open(); } dr = komut2.ExecuteReader(); if (dr.Read()) { DialogResult cc = MessageBox.Show("Aynı Vites Türü bulunmaktadır", "UYARI", MessageBoxButtons.OK, MessageBoxIcon.Warning); if (cc == DialogResult.OK) { textBox1.Clear(); } } else { if (con.State == ConnectionState.Closed) { con.Open(); } OleDbCommand komut = new OleDbCommand(); komut.Connection = con; komut.CommandText = "insert into VITES_TURU(VITES_TURU) values (@VITES_TURU)"; komut.Parameters.AddWithValue("@VITES_TURU", textBox1.Text); komut.ExecuteNonQuery(); con.Close(); DialogResult cevap = MessageBox.Show("Kayıt Yapıldı \nBaşka Kayıt Yapmak İster Misiniz?", "Bilgi Kutusu", MessageBoxButtons.YesNoCancel); if (DialogResult.No == cevap) { YeniAraçKaydı yenikayit = new YeniAraçKaydı(); this.Hide(); yenikayit.ShowDialog(); } else if (DialogResult.Yes == cevap) { textBox1.Clear(); } } } }