Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/18/12 14:58:17 (13 years ago)
Author:
spimming
Message:

#1680:

  • Check if password is valid for pfx file
  • progress bar is now marquee style
  • control flow refactored
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Hive.Azure/HeuristicLab.Clients.Hive.CloudManager/3.3/Views/AddAzureServiceDialog.cs

    r7357 r7362  
    1818    private bool bwCompleted;
    1919    private bool closePending;
     20
     21    private string certificateFile;
     22    private string certificatePassword;
    2023
    2124    public AddAzureServiceDialog(IItemList<Subscription> subs) {
     
    124127      using (var form = new AddCertificate()) {
    125128        form.ShowDialog();
     129        if (!form.ErrorOccured) {
     130          certificateFile = form.CertificateFile;
     131          certificatePassword = form.CertificatePassword;
     132          lblCertificateFile.Text = certificateFile;
     133        }
    126134      }
    127135    }
Note: See TracChangeset for help on using the changeset viewer.