private void geriButton_Click_1(object sender, EventArgs e)
        {
            islemForm i = new islemForm();

            i.Show();
            this.Hide();
        }
        private void girisButton_Click(object sender, EventArgs e)
        {
            if (yoneticiRadioButton.Checked == true)
            {
                if (kullaniciTextBox.Text != "" && sifreTextBox.Text != "")
                {
                    var row = from x in database.YONETICIs
                              where (x.kullanici_adi.ToString() == kullaniciTextBox.Text &&
                                     x.sifre.ToString() == sifreTextBox.Text)
                              select x.sifre;
                    if (row.Any())
                    {
                        kayitForm kyt = new kayitForm();
                        kyt.Show();
                        this.Hide();
                    }
                    else
                    {
                        label3.Text           = "Kullanıcı adı veya şifreyi yanlış girdiniz";
                        kullaniciTextBox.Text = "";
                        sifreTextBox.Text     = "";
                    }
                }
                else
                {
                    label3.Text           = "Alanlara değer girmeden giriş yapamazsınız";
                    kullaniciTextBox.Text = "";
                    sifreTextBox.Text     = "";
                }
            }
            else if (kullaniciRadioButton.Checked == true)
            {
                if (secimComboBox.SelectedIndex == 0)
                {
                    if (kullaniciTextBox.Text != "" && sifreTextBox.Text != "")
                    {
                        var row = from x in database.BIREYSEL_KULLANICIs
                                  where (x.kullanici_adi.ToString() == kullaniciTextBox.Text &&
                                         x.sifre.ToString() == sifreTextBox.Text)
                                  select x.kullanici_adi;
                        if (row.Any())
                        {
                            veri      = secimComboBox.Text;
                            user_name = kullaniciTextBox.Text;
                            islemForm islem = new islemForm();
                            islem.Show();
                            this.Hide();
                        }
                        else
                        {
                            label3.Text           = "Kullanıcı adını veya şifreyi yanlış girdiniz";
                            kullaniciTextBox.Text = "";
                            sifreTextBox.Text     = "";
                        }
                    }
                    else
                    {
                        label3.Text           = "Alanlara değer girmeden giriş yapamazsınız";
                        kullaniciTextBox.Text = "";
                        sifreTextBox.Text     = "";
                    }
                }

                else if (secimComboBox.SelectedIndex == 1)
                {
                    if (kullaniciTextBox.Text != "" && sifreTextBox.Text != "")
                    {
                        var row = from x in database.KURUMSAL_KULLANICIs
                                  where (x.kullanici_adi.ToString() == kullaniciTextBox.Text &&
                                         x.sifre.ToString() == sifreTextBox.Text)
                                  select x.kullanici_adi;
                        if (row.Any())
                        {
                            veri      = secimComboBox.Text;
                            user_name = kullaniciTextBox.Text;
                            islemForm islem = new islemForm();
                            islem.Show();
                            this.Hide();
                        }
                        else
                        {
                            label3.Text           = "Kullanıcı adını veya şifreyi yanlış girdiniz";
                            kullaniciTextBox.Text = "";
                            sifreTextBox.Text     = "";
                        }
                    }
                    else
                    {
                        label3.Text           = "Alanlara değer girmeden giriş yapamazsınız";
                        kullaniciTextBox.Text = "";
                        sifreTextBox.Text     = "";
                    }
                }
                else
                {
                    label3.Text = "Seçim yapmadan giriş yapamazsınız!";
                }
            }
        }