vote up 1 vote down star

In visual studio 2005: I want to create a dll base on another dll. For example : I want to create a DLL -- new.dll, and it uses a DLL -- old.dll; How can I create a new.dll have old.dll inside? I mean, I don't need to include old.dll in my project when I use new.dll?

Thanks for any advisement.

flag

2 Answers

vote up 0 vote down check

Do you have the source code of the old.dll? Is your dll .net dll?

The method about gac is for .net dll and is not for general dll.

If not .net dll, you need to build a library (.lib) first. And let your new.dll linked with the library.

link|flag
kcwu thanks.I did not have the source code of old.dll. It is not a .net dll. – leebin May 17 at 10:36
vote up 0 vote down

you will have to register the dll in gac

http://www.dotnetspider.com/forum/ViewForum.aspx?ForumId=16430

link|flag
Thanks for your help. – leebin May 17 at 10:27

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.