private void PictureBox1_Click(object sender, EventArgs e) { ogretmenekran ekr = new ogretmenekran(); ekr.Show(); this.Hide(); }
private void button1_Click(object sender, EventArgs e) { if (textBox1.Text != "" && textBox2.Text != "") { try { con = new SqlConnection("Data Source=.; Initial Catalog=yoklama;Integrated Security=True;"); cmd = new SqlCommand(); con.Open(); cmd.Connection = con; cmd.CommandText = "SELECT * FROM ogretmen where ogretmen_no='" + textBox1.Text + "' AND sifre='" + textBox2.Text + "'"; dr = cmd.ExecuteReader(); if (dr.Read()) { ogretmenekran ogrtmnekrn = new ogretmenekran(); ogrtmnekrn.ogretmen_no = textBox1.Text; ogrtmnekrn.Show(); this.Hide(); } else { MessageBox.Show("Kullanıcı Adı veya Şifre yanlıştır."); } } catch { MessageBox.Show("Kullanıcı Adı veya Şifre yanlıştır."); } con.Close(); } else { MessageBox.Show("Gerekli Alanları Doldurunuz...", "BOŞ ALAN UYARISI", MessageBoxButtons.OK, MessageBoxIcon.Warning); } }