Ejemplo n.º 1
0
        private void buttonTamam_Click(object sender, System.EventArgs e)
        {
            if (comboBoxKullaniciID.Text.Length < 1)
            {
                return;
            }

#if !DEBUG
            if (textBoxTerminalNo.Text == "")
            {
                MessageBox.Show("TERMiNAL NUMARASINI GiRiN ");
                textBoxTerminalNo.Focus();
                return;
            }
#endif
            String sql;
            sql  = "SELECT Parola from kullanici_tanim (NOLOCK) WHERE KullaniciID='";
            sql += comboBoxKullaniciID.Text;
            sql += "'";

            string snc = "";

            snc = Utility.Engine.dat.TSelectScalar(sql);


            if (snc != textBoxParola.Text.Trim())
            {
                MessageBox.Show("Hatali Parola");

                return;
            }

            sonuc = true;

            Utility.Engine.KullaniciID = comboBoxKullaniciID.Items[comboBoxKullaniciID.SelectedIndex].ToString();

            Yaz();

            AnaEkran a = new AnaEkran();
            a.ShowDialog();
        }
Ejemplo n.º 2
0
        private void buttonTamam_Click(object sender, System.EventArgs e)
        {
            string versiyon = Utility.Engine.dat.TSelectScalar(@"SELECT TanimValue FROM tanimlamalar WHERE TanimID = 'PocketVer'");

            if (!versiyon.Equals(Utility.Versiyon) && !string.IsNullOrEmpty(versiyon))
            {
                if (!Utility.Sor("Uygulama versiyonunuz merkezdeki ile uyuşmuyor, yinede devam etmek ister misiniz?"))
                {
                    //LocalVersiyonIniGucenlle();
                    Application.Exit();
                    return;
                }
            }

            #region Devam Et
            if (comboBoxKullaniciID.Text.Length < 1)
            {
                return;
            }
            if (textBox1.Text.Length < 1)
            {
                MessageBox.Show("SİCİL NUMARASINI GiRiN ");
                textBox1.Focus();
                return;
            }

#if !DEBUG
            if (textBoxTerminalNo.Text == "")
            {
                MessageBox.Show("TERMiNAL NUMARASINI GiRiN ");
                textBoxTerminalNo.Focus();
                return;
            }
#endif
            String sql;
            sql  = "SELECT Parola from kullanici_tanim (NOLOCK) WHERE KOD='";
            sql += textBox1.Text;
            sql += "'";

            string snc = "";

            snc = Utility.Engine.dat.TSelectScalar(sql);


            if (snc != textBoxParola.Text.Trim())
            {
                MessageBox.Show("Hatali Parola");

                return;
            }

            sonuc = true;

            Utility.Engine.KullaniciID  = comboBoxKullaniciID.Items[comboBoxKullaniciID.SelectedIndex].ToString();
            Utility.Engine.KullaniciKod = textBox1.Text;

            Yaz();
            if (chckbox_sifre_degis.Checked == true)
            {
                if (yeni_sifre_1.Text != "" && yeni_sifre_2.Text != "")
                {
                    if (yeni_sifre_1.Text == yeni_sifre_2.Text)
                    {
                        if (Utility.Engine.dat.TInsert("Update kullanici_tanim set Parola='" + yeni_sifre_1.Text + "' where KullaniciID='" + comboBoxKullaniciID.Text + "'"))
                        {
                            MessageBox.Show("Şifre Değiştirildi");
                            chckbox_sifre_degis.Checked = false;
                            pnl_sifre_degistir.Visible  = false;
                        }
                    }
                    else
                    {
                        MessageBox.Show("YENİ ŞİFRELER AYNI OLMALI");
                        return;
                    }
                }
                else
                {
                    MessageBox.Show("YENİ ŞİFRELERİ BOŞ GİRMEYİN");
                    return;
                }
            }


            AnaEkran a = new AnaEkran();
            a.ShowDialog();
            #endregion
        }