Bind 3rd party DLL to App

M

Mike TI

Dec 5, 2005

I am using some 3rd pary components in my project (VB Net 2005)

Is there a way I can bind the dependent DLL files in the application file.
Objective: I do not want the end user to know which components I have used.

Thank you.
 
F

Frans Bouma [C# MVP]

Mike said:
Dec 5, 2005

I am using some 3rd pary components in my project (VB Net 2005)

Is there a way I can bind the dependent DLL files in the application
file. Objective: I do not want the end user to know which components
I have used.

You can't (not easily at least). There's no static linking with .lib
files like there is in C. You can solve it by building the 3rd party's
sourcecode (if you have access to that) into a module, and on the
command line build a single assembly with your own code and that module.

FB

--
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top