private void AnaMenuDonButon_Click(object sender, EventArgs e)
        {
            UyeSistemMenu UyeSistemMenuDon = new UyeSistemMenu();

            UyeSistemMenuDon.Show();
            this.Hide();
        }
        public void GirisYap(string eposta, string parola, Form frm1)
        {
            command = new SqlCommand("Select * From UyeBilgi where UyeEposta = '" + eposta + "' and UyeParola = '" + parola + "'", baglanti);
            baglanti.Open();
            reader = command.ExecuteReader();

            if (reader.Read())
            {
                MessageBox.Show("Giriş Başarılı", "*Tebrikler*", MessageBoxButtons.OK, MessageBoxIcon.Information);
                UyeSistemMenu UyeSistemMenuGiris = new UyeSistemMenu();
                frm1.Hide();
                UyeSistemMenuGiris.Show();

                /*Formlar.UyeSistemMenu UyeSistemMenuSayfa = new Formlar.UyeSistemMenu();
                 * UyeSistemMenuSayfa.Show();*/
            }

            else
            {
                frm1.BackColor = Color.Red;
                MessageBox.Show("Hatalı Giriş!", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
                frm1.BackColor = Color.SeaGreen;
            }

            baglanti.Close();
            command.Dispose();
        }