Example #1
0
 /// <summary>Activate Online button click event handler</summary>
 /// <param name="sender">object</param>
 /// <param name="e">EventArgs</param>
 private void activateButton_Click(object sender, EventArgs e)
 {
     using (OnlineActivationForm activationDialog = new OnlineActivationForm(this, m_License))
     {
         activationDialog.ShowDialog();
     }
 }
Example #2
0
 /// <summary>Activate Online button click event handler</summary>
 /// <param name="sender">The sender object.</param>
 /// <param name="e">Event arguments.</param>
 private void activateOnlineButton_Click(object sender, EventArgs e)
 {
     using (OnlineActivationForm activationDialog = new OnlineActivationForm(m_MainForm, m_MainForm.License))
     {
         activationDialog.ShowDialog(this);
     }
     LoadStatus();
 }