Home
Manage Your Code
Snippet: Custom SSIS Task, referencing Microsoft.DataTransformationServices.Controls (C#)
Title: Custom SSIS Task, referencing Microsoft.DataTransformationServices.Controls Language: C#
Description: If your creating a UI for a custom SSIS/DTS Task, then its a good idea to descend from '' to offload a whole section of development. In this case you need to reference the 'hard-to-find' Microsoft.DataTransformationServices.Controls assembly Views: 170
Author: Stephen Smith Date Added: 3/17/2010
Copy Code  
1If you are having trouble adding the reference
2
3"Microsoft.DataTransformationServices.Controls"
4
5You have to go to the following folder to add the reference,
6
7"C:\WINDOWS\assembly\GAC_MSIL\"
8
9And then navigate to said dll
10
11i.e. For me the path was:
12
13C:\WINDOWS\assembly\GAC_MSIL\Microsoft.DataTransformationServices.Controls\9.0.242.0__89845dcd8080cc91\Microsoft.DataTransformationServices.Controls.DLL
Notes
Extracted from http://blogs.msdn.com/mattm/archive/2008/07/18/creating-a-custom-task-with-a-default-ui.aspx