Adding dll files to the PATH variable in Microsoft VS .NET 2003
H1,
I have a bunch of DLL files in a folder that i would like to link against a c++ project in visual studio .net 2003, could someone tell me how to do this.
I just need to tell the vs .net environment to look into this folder to find the dll's that the project needs to run.
Thanks very much for your response.
Re: Adding dll files to the PATH variable in Microsoft VS .NET 2003
You don't link to the dll:s. Each dll should have a static library equivalent that you link to. This will cause your application to load the dlls at run-time.
Re: Adding dll files to the PATH variable in Microsoft VS .NET 2003
I know that now, thanks for the response,
its appreciated.