Esempio n. 1
0
 private void LoadAdministration()
 {
     this.FormState = FormStateEnum.Processing;
     appCollection  = explorerHelper.GetApplicationCollection();
     LoadTreeViewApplications();
     ExpandToLevel(treeViewBizTalkApplications.Nodes, 2);
     this.FormState = FormStateEnum.NotProcessing;
 }
Esempio n. 2
0
        public BizTalkApplicationDeployment()
        {
            InitializeComponent();
            treeViewBizTalkApplications.DoubleBuffered(true);
            appCollection = explorerHelper.GetApplicationCollection();
            msiDeploy.ExecutionStarted        += new EventHandler(MsiDeployStarted_Eventhandler);
            msiDeploy.ExecutionComplete       += new EventHandler(MsiDeployComplete_Eventhandler);
            btHostInstances.ExecutionStarted  += new EventHandler(HostInstancesStarted_Eventhandler);
            btHostInstances.ExecutionComplete += new EventHandler(HostInstancesComplete_Eventhandler);

            btdfmsiDeploy.ExecutionStarted  += new EventHandler(BtdfMsiDeployStarted_Eventhandler);
            btdfmsiDeploy.ExecutionComplete += new EventHandler(BtdfMsiDeployComplete_Eventhandler);
        }
Esempio n. 3
0
 private Microsoft.BizTalk.ExplorerOM.ApplicationCollection RefreshAppCollection()
 {
     appCollection = explorerHelper.GetApplicationCollection();
     return(appCollection);
 }
Esempio n. 4
0
 public UserControlListView(Microsoft.BizTalk.ExplorerOM.ApplicationCollection appCollection)
 {
     _appCollection = appCollection;
     InitializeComponent();
     this.Dock = DockStyle.Fill;
 }