private void simpleButton1_MouseClick(object sender, MouseEventArgs e) { Giriş frm1 = new Giriş(); frm1.Show(); this.Hide(); }
private void simpleButton3_Click(object sender, EventArgs e) { Giriş grş = new Giriş(); grş.Show(); this.Hide(); }
private void simpleButton2_Click(object sender, EventArgs e) { Baglantı.Open(); SqlCommand komut = new SqlCommand("Insert into Kullanıcılar (KullanıcıAdSoyad,KullanıcıŞifre) Values ('" + textBox1.Text.ToString() + "','" + textBox2.Text.ToString() + "')", Baglantı); komut.ExecuteNonQuery(); MessageBox.Show("Kaydınız Oluşturulmuştur."); Giriş grş = new Giriş(); grş.Show(); this.Hide(); Baglantı.Close(); //SqlBagşanti(); }