Changeset 7362 for branches/HeuristicLab.Hive.Azure/HeuristicLab.Clients.Hive.CloudManager/3.3/Views/AddAzureServiceDialog.cs
- Timestamp:
- 01/18/12 14:58:17 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.Hive.Azure/HeuristicLab.Clients.Hive.CloudManager/3.3/Views/AddAzureServiceDialog.cs
r7357 r7362 18 18 private bool bwCompleted; 19 19 private bool closePending; 20 21 private string certificateFile; 22 private string certificatePassword; 20 23 21 24 public AddAzureServiceDialog(IItemList<Subscription> subs) { … … 124 127 using (var form = new AddCertificate()) { 125 128 form.ShowDialog(); 129 if (!form.ErrorOccured) { 130 certificateFile = form.CertificateFile; 131 certificatePassword = form.CertificatePassword; 132 lblCertificateFile.Text = certificateFile; 133 } 126 134 } 127 135 }
Note: See TracChangeset
for help on using the changeset viewer.