Exemple #1
0
 private void HookupEvents(SsdsDestinationConnectionPage connPage)
 {
     connPage.GetConnectionAttributes += new GetConnectionAttributesEventHandler(page_GetConnectionAttributes);
     connPage.SetConnectionAttributes += new SetConnectionAttributesEventHandler(page_SetConnectionAttributes);
     connPage.GetCustomProperties += new GetCustomPropertiesEventHandler(page_GetCustomProperties);
     connPage.SetCustomProperties += new SetCustomPropertiesEventHandler(page_SetCustomProperties);
     connPage.GetSelectedConnectionManager += new GetSelectedConnectionManagerEventHandler(page_GetSelectedConnectionManager);
     connPage.CreateNewConnection += new CreateNewConnectionEventHandler(page_CreateNewConnection);
 }
Exemple #2
0
 private void HookupEvents(SsdsDestinationConnectionPage connPage)
 {
     connPage.GetConnectionAttributes      += new GetConnectionAttributesEventHandler(page_GetConnectionAttributes);
     connPage.SetConnectionAttributes      += new SetConnectionAttributesEventHandler(page_SetConnectionAttributes);
     connPage.GetCustomProperties          += new GetCustomPropertiesEventHandler(page_GetCustomProperties);
     connPage.SetCustomProperties          += new SetCustomPropertiesEventHandler(page_SetCustomProperties);
     connPage.GetSelectedConnectionManager += new GetSelectedConnectionManagerEventHandler(page_GetSelectedConnectionManager);
     connPage.CreateNewConnection          += new CreateNewConnectionEventHandler(page_CreateNewConnection);
 }
Exemple #3
0
        private void AddPagesToForm(SsdsDestinationForm form)
        {
            form.Text = @"SSDS Destination";

            SsdsDestinationConnectionPage connPage = new SsdsDestinationConnectionPage();

            connPage.ServiceProvider = this.ServiceProvider;

            this.HookupEvents(connPage);

            form.AddPage("Connection Manager", connPage);

            //add others pages...
            this.AddCloudDBChooseColumnsPage(form);
        }
Exemple #4
0
        private void AddPagesToForm(SsdsDestinationForm form)
        {
            form.Text = @"SSDS Destination";

            SsdsDestinationConnectionPage connPage = new SsdsDestinationConnectionPage();

            connPage.ServiceProvider = this.ServiceProvider;

            this.HookupEvents(connPage);

            form.AddPage("Connection Manager", connPage);

            //add others pages...
            this.AddCloudDBChooseColumnsPage(form);
        }