private void btnGuncelle_Click(object sender, EventArgs e) { if (txtAd.Text != "" & txtSoyad.Text != "" & txtEposta.Text != "" & txtSifre.Text != "" & filepth != null) { if (txtAd.Text.Length <= 50 & txtSoyad.Text.Length <= 50 & txtEposta.Text.Length <= 70 & txtSifre.Text.Length <= 12) { if (chckErkek.Checked || chckKadın.Checked) { KayitOl ko = new KayitOl(); ko.adi = txtAd.Text; ko.soyadi = txtSoyad.Text; string cins; if (chckErkek.Checked) { cins = "Erkek"; } else { cins = "Kadın"; } ko.cinsiyeti = cins; ko.epostasi = txtEposta.Text; ko.sifresi = txtSifre.Text; ko.resim = image; ko.ayarguncel(); MessageBox.Show("Bilgileriniz başarıyla güncellenmiştir."); Properties.Settings.Default.u_eposta = txtEposta.Text; Properties.Settings.Default.u_sifre = txtSifre.Text; Properties.Settings.Default.Save(); } else { MessageBox.Show("Lütfen 'Cinsiyet' kısmını işaretleyiniz!"); } } else { if (txtAd.Text.Length > 50) { MessageBox.Show("Adınız 50 karakterden uzun olamaz!"); } else if (txtSoyad.Text.Length > 50) { MessageBox.Show("Soyadınız 50 karakterden uzun olamaz!"); } else if (txtEposta.Text.Length > 70) { MessageBox.Show("E-posta adresiniz 70 karakterden uzun olamaz!"); } else if (txtSifre.Text.Length > 12) { MessageBox.Show("Şifreniz 12 karakterden uzun olamaz!"); } } } else { MessageBox.Show("Lütfen eksik bilgileri doldurunuz ve profil fotoğrafı seçiniz!"); } }
private void btnKayitOl_Click(object sender, EventArgs e) { if (txtAd.Text != "" & txtSoyad.Text != "" & txtEposta.Text != "" & txtSifre.Text != "" & filepth != null) { if (txtAd.Text.Length <= 50 & txtSoyad.Text.Length <= 50 & txtEposta.Text.Length <= 70 & txtSifre.Text.Length <= 12) { if (chckErkek.Checked || chckKadın.Checked) { KayitOl ko = new KayitOl(); ko.adi = txtAd.Text; ko.soyadi = txtSoyad.Text; string cins; if (chckErkek.Checked) { cins = "Erkek"; } else { cins = "Kadın"; } ko.cinsiyeti = cins; ko.epostasi = txtEposta.Text; ko.sifresi = txtSifre.Text; ko.resim = image; ko.kaydet(); MessageBox.Show("Kaydınız oluşturuldu. Ana sayfaya yönlendiriliyorsunuz..."); Giris grs = new Giris(); this.Hide(); grs.Show(); } else { MessageBox.Show("Lütfen 'Cinsiyet' kısmını işaretleyiniz!"); } } else { if (txtAd.Text.Length > 50) { MessageBox.Show("Adınız 50 karakterden uzun olamaz!"); } else if (txtSoyad.Text.Length > 50) { MessageBox.Show("Soyadınız 50 karakterden uzun olamaz!"); } else if (txtEposta.Text.Length > 70) { MessageBox.Show("E-posta adresiniz 70 karakterden uzun olamaz!"); } else if (txtSifre.Text.Length > 12) { MessageBox.Show("Şifreniz 12 karakterden uzun olamaz!"); } } } else { MessageBox.Show("Lütfen eksik bilgileri doldurunuz ve profil fotoğrafı seçiniz!"); } }