MatthewRoche


I'd like to incorporate the "package component tree" UI component that is used within the Visual Studio designers into an SSIS utility I'm building. This is the one I'm talking about:

Edit: Apparently using the IMG tag on these forums works in the editor preview, but not in the actual posts, so I've replaced images with links...

Example 1

Example 2

I've done some searching online, but have not found any information about where this UI is implemented, or if it is reusable. Does anyone here know if it is possible to re-use this component in a .NET application

Thanks in advance!





Re: Looking for a component

Phil Brammer


Matthew,
I've fixed your image tags so that they display here, but unfortunately, your URL is being "cleansed" of the word, a$s.

In the future, just use the tags, [i mg]URL[/i mg] (space is intentional)






Re: Looking for a component

MatthewRoche

Phil Brammer wrote:
Matthew,
I've fixed your image tags so that they display here, but unfortunately, your URL is being "cleansed" of the word, a$s.

Thanks, Phil! Hopefully my fix (including moving the images to a different URL) will do the trick.







Re: Looking for a component

Bob Bojanic - MSFT

This control is not officially published. However, you might want to try playing with

Microsoft.DataTransformationServices.Design.Controls.DtsComponentTreeView from Microsoft.DataTransformationServices.Design.dll.

I am not sure if you will be able to configure it externally, but there is a chance for it. Certainly, there are no guaranties we will not break your code in the future if you use the undocumented control.

Good luck,

Bob






Re: Looking for a component

MatthewRoche

Thanks, Bob!

I'm usually pretty reluctant to work with unpublished assemblies, so I'm not sure if I'll use this, but I'll definitely take a look at it. (Probably through reflector. ) Thanks for the pointer!