private void button5_Click_1(object sender, EventArgs e) { Arac_Satis satis = new Arac_Satis(); satis.Show(); this.Hide(); }
private void btn_Satis_Click(object sender, EventArgs e) { Arac_Satis satis = new Arac_Satis(); satis.btn_Geridon.Visible = true; satis.Show(); this.Hide(); }
private void btn_Giris_Click(object sender, EventArgs e) { try { cumle.Select("Select yetki_kontrol from Yetki_Kontrol", "yetki_kontrol"); if (cumle.ds.Tables["yetki_kontrol"].Rows[0]["yetki_kontrol"].ToString() == "0") { cumle.Yetkileri_Ver(); cumle.IDU("Update Yetki_Kontrol set yetki_kontrol=1"); } cumle.Select("Select Yetki_kodu from Kullanici where Kullanici_adi='" + txt_Kulad.Text.ToString() + "' AND Kullanici_sifre='" + txt_Sifre.Text.ToString() + "'", "giris"); yetki_kodu = cumle.ds.Tables["giris"].Rows[0]["Yetki_kodu"].ToString(); if (yetki_kodu == "YK0") { tc_no = txt_Kulad.Text; admin.Show(); this.Hide(); } else if (yetki_kodu == "YK1") { tc_no = txt_Kulad.Text; AnaMenü m = new AnaMenü(); m.Show(); this.Hide(); } else if (yetki_kodu == "YK2") { tc_no = txt_Kulad.Text; Servis s = new Servis(); s.Show(); this.Hide(); } else if (yetki_kodu == "YK3") { tc_no = txt_Kulad.Text; Arac_Satis asts = new Arac_Satis(); asts.Show(); this.Hide(); } else if (yetki_kodu == "YK4") { tc_no = txt_Kulad.Text; Musterihzmt.tcno = txt_Kulad.Text.ToString(); Musterihzmt.Show(); this.Hide(); } } catch (Exception) { MessageBox.Show("Hatalı Giriş"); } }