Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/27/12 16:58:29 (13 years ago)
Author:
spimming
Message:

#1680:

  • ErrorProvider added to form
  • Implemented Validation methods for controls
  • Check Validation methods for controls in form when btn is clicked
File:
1 edited

Legend:

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

    r7402 r7424  
    6767      foreach (HostedService serv in services) {
    6868        serv.Subscription = subscription;
    69         foreach (Deployment dep in serv.Deployments) {
    70           dep.Subscription = subscription;
     69        if (serv.Deployments != null) {
     70          foreach (Deployment dep in serv.Deployments) {
     71            dep.Subscription = subscription;
     72          }
    7173        }
    7274      }
Note: See TracChangeset for help on using the changeset viewer.