How to use vlc.dll without registration?

I used vlc.dll in my form. After installing this, if I install vlc outside of this, my application will start using the DLL from this folder. So, how can I get an application to use a DLL from its own folder?

0
source share
1 answer

If it is a native dll, Windows first looks for its own application folder. The search order of the Dynamic-Link library in msdn . This doesn't seem to be happening, so ..

EDIT:. For ActiveX DLLs, you can use Registration-Free COM to report that your application is using the local version instead of the registered one.

if it is a managed dll, Windows searches the GAC first. In what order are the places where the link to the DLL is loaded? which is similar to what you experience.

You may need to rename the file so that it looks different.

Do you have a good reason to use a private copy? By doing so, you will not receive security updates.

+1
source

All Articles