You have two choices:
- Make your VB.Net class as COM component and call from ActiveX script task.
- Make DTS custom task in .Net (search MSDN for how to do it) and natively
call your VB.Net class.
Second approach is more complicated, but it will give you full control of
task.
Konstantin.
<chambersdon (AT) hotmail (DOT) com> wrote
Quote:
I have a VB.NET class that I need to call from a DTS package. I need
to set a couple of properties and then call a method.
I've tried the activeX Script task but I can't seem to get it to work.
I used CreateObject but I think it wants a COM component.
Don |