Пример #1
0
 private void btnOk_Click(object sender, EventArgs e)
 {
     try
     {
         SelectedCertificate = CertificateHelper.CreateCertificate(cmbCN.Text, (int)numExpiration.Value, selectedCA);
     }
     catch (Exception ex)
     {
         this.ShowError(ex);
         this.DialogResult = System.Windows.Forms.DialogResult.None;
     }
 }