コード例 #1
0
ファイル: Unregistered.cs プロジェクト: ctricks/CMS
        private void btnRegister_Click(object sender, EventArgs e)
        {
            if (string.IsNullOrEmpty(tbSerialNo.Text))
            {
                MessageBox.Show("Error: Cannot process blank value. Please provide a good one.", "Unable to process", MessageBoxButtons.OK, MessageBoxIcon.Error);
                return;
            }
            isMatch = cf.GetHardDiskSerialNo() == cf.Decrypt(tbSerialNo.Text) ? true : false;

            if (!isMatch)
            {
                MessageBox.Show("Error: Invalid Serial Number , Please provide a good one.", "Unable to process", MessageBoxButtons.OK, MessageBoxIcon.Error);
            }
            else
            {
                MatchWord = tbSerialNo.Text;
                MessageBox.Show("License is valid.", "Applying License", MessageBoxButtons.OK, MessageBoxIcon.Information);
                this.Close();
            }
        }