Click here to Skip to main content
15,890,897 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Hi,
Is it possible to combine 3rd party DLL with our Custom DLL..i.e i want to combine DLL created by me with One External PDF creating DLL...

if yes..plz tell me the procedure or any other option..

Thnx
Posted
Comments
Sergey Alexandrovich Kryukov 18-Jul-13 1:10am    
What do you mean by "combine"? If you know how to write DLL, you should know how to link or load it. Where is your problem?
—SA

I assume that you mean you want to link your exe/dll with a third party dll. Yes you can do this but you will need the third party's matching .lib file to link to the dll. If that is not available, you will need to use another way to activate the third party DLL such as COM or LoadLibrary().
 
Share this answer
 
You can use ILMerge for generating one big assembly out of several assemblies. But that requires .Net, and you did not state what type of dll you are talking about.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900