예제 #1
0
        private void MüsteriSil_Click(object sender, EventArgs e)
        {
            Müşteri_Ekle x = new Müşteri_Ekle();


            if (MessageBox.Show("Müşteri Silinecek Eminmisiniz?", "Sil Onayı", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == System.Windows.Forms.DialogResult.Yes)
            {
                SIFREONAYI a = new SIFREONAYI();
                a.ShowDialog();
                if (a.DialogResult == DialogResult.OK)
                {
                    {
                        try
                        {
                            string kmt = "DELETE FROM MUSTERILER WHERE ID=@satir";
                            komut = new SqlCommand(kmt, baglanti);
                            komut.Parameters.AddWithValue("@satir", dataGridView1.CurrentRow.Cells[0].Value);
                            baglanti.Open();
                            komut.ExecuteNonQuery();
                            baglanti.Close();
                            listele();
                        }
                        catch (Exception hata)
                        {
                            MessageBox.Show("Kayıt Silinemedi!" + hata.Message);
                        }
                    }
                }
            }
        }
예제 #2
0
        void GİRİS()
        {
            MUSTERI a = new MUSTERI();

            sifre.Focus();
            string        yol      = "Data Source=DESKTOP-KK7V7H8\\;Initial Catalog = MTAKIP; Integrated Security = True";
            SqlConnection baglanti = new SqlConnection(yol);

            baglanti.Open();
            SqlCommand    komut = new SqlCommand("SELECT * FROM KULLANICILAR WHERE SIFRE='" + sifre.Text + "'", baglanti);
            SqlDataReader dr    = komut.ExecuteReader();
            Müşteri_Ekle  x     = new Müşteri_Ekle();

            if (dr.Read())
            {
                DialogResult = DialogResult.OK;

                this.Visible = false;
            }

            else
            {
                MessageBox.Show("Hatalı Giriş Yaptınız!", "Hata", MessageBoxButtons.OK, MessageBoxIcon.Warning);
            }
            baglanti.Close();
        }
예제 #3
0
        private void MüşteriEkle_Click(object sender, EventArgs e)
        {
            Müşteri_Ekle a = new Müşteri_Ekle();

            a.ID = 0;
            a.ShowDialog();

            listele();
        }
예제 #4
0
        public void MUSTERIUPDATE()
        {
            Müşteri_Ekle a      = new Müşteri_Ekle();
            int          dataid = (int)dataGridView1.Rows[dataGridView1.CurrentRow.Index].Cells[0].Value;

            a.ID = dataid;        //ıd burdan alınacak
            a.musteribilgileri(); //  ıd ye göre textboxları vs. dolduracak
            a.ShowDialog();
            listele();
        }