Click here to Skip to main content
15,881,709 members
Articles / Desktop Programming / Windows Forms

Load and Execute SSIS Packages in Microsoft Windows

Rate me:
Please Sign up or sign in to vote.
4.56/5 (17 votes)
26 Mar 2010CPOL7 min read 89.5K   3.3K   34  
This article introduces a method to load and execute SSIS packages in Microsoft Windows with a demo WPF application.
using System;
using System.Collections.Generic;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Windows;

namespace SSISWindowsLauncher
{
    /// <summary>
    /// Interaction logic for App.xaml
    /// </summary>
    public partial class App : Application
    {
        void app_Startup(object sender, StartupEventArgs e)
        {
            Splash SplashWnd = new Splash();
            SplashWnd.Show();

            DispatcherHelper.DoEvents();
            System.Threading.Thread.Sleep(800);

            WinMain MainWnd = new WinMain();
            MainWnd.Show();
            SplashWnd.Close();
            GC.Collect();
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
United States United States
I have been working in the IT industry for some time. It is still exciting and I am still learning. I am a happy and honest person, and I want to be your friend.

Comments and Discussions