PDA

View Full Version : Adding dll files to the PATH variable in Microsoft VS .NET 2003



locus
31st March 2007, 23:01
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.

e8johan
2nd April 2007, 07:23
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.

locus
3rd April 2007, 20:47
I know that now, thanks for the response,

its appreciated.