tags:

views:

259

answers:

2

How can i register a visual basic 6 dll in the global assembly cache to be able to add it as a reference in a sql server integration services script task.

A: 

Check this blog post out. It describes what you want to do.

JP Alioto
+1  A: 

Only .Net assemblies can be registered in the GAC. A vb6 dll is just not qualified. You can build a .Net assembly that exposes the vb6 dll (COM) types and methods to managed code, and register that in the GAC.

Joel Coehoorn
Sounds good, I will try that, tnks
Perfect, it works. tnks.