I have created a .dll in .Net for a coworker to include in his VB6 project. After a lot of head scratching we finally got the .dll referenced from the VB6 project and were able to create instances of objects.
The thing is my .dll references another .dll (third party). I know when generating .exe files you can choose to include a referenced .dll instead of making it a prerequisite. However the same functionality is not available when creating .dll files.
In his VB6 it mentions that the third party .dll is not accessible.
How can I include the third party .dll in my .dll? Or would it just be wiser for my coworker to reference the third party .dll as well as mine??
Thanks in advance.