private void btnTahlilIslemleri_Click(object sender, EventArgs e)
        {
            this.pbSeciliSayfa.Location = new Point(
                176,
                this.btnTahlilIslemleri.Location.Y);
            FormTahlilIslemleri frm = new FormTahlilIslemleri();

            FormAcikmi(frm);
        }
Exemple #2
0
 private void btnTahlilIslemleri_Click(object sender, EventArgs e)
 {
     if (Genel.PersonelUnvan.Contains("Doktor") || Genel.PersonelUnvan.Contains("Laborant") || Genel.PersonelUnvan.Contains("Yönetici"))
     {
         this.pbSeciliSayfa.Location = new Point(
             176,
             this.btnTahlilIslemleri.Location.Y);
         var frm = new FormTahlilIslemleri();
         FormAcikmi(frm);
     }
     else
     {
         MessageBox.Show("Bu Sayfayı Görüntülemek İçin Yetkiniz Bulunmamaktadır!", "Dikkat!",
                         MessageBoxButtons.OK, MessageBoxIcon.Information);
     }
 }