Example #1
0
 private void butDangKi_Click(object sender, EventArgs e)
 {
     if (txtLicense.Text.Trim() != "")
     {
         string s_key = Medisoft2009.License.Encryption.DeCode(txtKey.Text, Medisoft2009.License.Encryption.Key);
         if (Medisoft2009.License.Encryption.ValidLicense(s_key, txtLicense.Text))
         {
             m.ComputerKey = txtKey.Text;
             m.License     = txtLicense.Text;
             if (!m.RegisterLicense())
             {
                 MessageBox.Show("Bản quyền sử dụng đăng ký không thành công. Vui lòng kiểm tra lại License", "Medisoft");
                 groLicense.Visible = true;
                 bChuaDangKiLicense = true;
             }
             else
             {
                 MessageBox.Show("Đăng kí thành công!", "Medisoft");
                 groLogin.Enabled   = true;
                 bChuaDangKiLicense = false;
                 groLicense.Visible = false;
                 this.Width         = 292;
                 this.Height        = 146;
             }
         }
         else
         {
             MessageBox.Show("Bản quyền không hợp lệ. Vui lòng liên hệ với quản trị hệ thống", "Medisoft");
             txtLicense.Focus();
         }
     }
     else
     {
         MessageBox.Show("Vui lòng nhập License", "Medisoft");
     }
 }