Exemple #1
0
 private void btnLicence_Click(object sender, EventArgs e)
 {
     try
     {
         if (txtLicence.Text != "")
         {
             LicenceManager licMG = new LicenceManager();
             Lic            lic   = licMG.GetAll().FirstOrDefault(l => l.Lic1 == txtLicence.Text);
             if (lic != null)
             {
                 File.Create(@"C:\Windows\lic.txt");
                 licMG.Delete(lic);
                 Users.FRM_Login login = new  Users.FRM_Login();
                 this.Hide();
                 login.ShowDialog();
                 Application.Exit();
             }
             else
             {
                 MessageBox.Show("عفواّ رقم الترخيص غير صحيح");
             }
         }
     }
     catch (Exception ex)
     {
         MessageBox.Show(ex.Message);
     }
 }
Exemple #2
0
 private void FRM_Licence_Load(object sender, EventArgs e)
 {
     //Check File Existence
     if (File.Exists(@"C:\Windows\lic.txt"))
     {
         Users.FRM_Login login = new Users.FRM_Login();
         this.Hide();
         login.ShowDialog();
         Application.Exit();
     }
 }