How can I add a DLL to my VC++.NET?
-
I would like to know how I can add a DLL to my VC++ program? I can do this easily in 6.0 version, what is the way in .NET? Ehsan Behboudi
Create a DLL project in the same solution as the app, change dependeces if you want for your app. make so that .exe and .dll file is in the same direcotry, (change compiler settings) import the header file to the .EXE project export functions in the .DLL project and you are ready to go hope i didn't confused you know.. ~dzenan~
-
Create a DLL project in the same solution as the app, change dependeces if you want for your app. make so that .exe and .dll file is in the same direcotry, (change compiler settings) import the header file to the .EXE project export functions in the .DLL project and you are ready to go hope i didn't confused you know.. ~dzenan~
-
i'm a little confused, I made the vb DLL in vb6.0, I can do everything in the 6.0 version, but now I just need to know how I can add the damn DLL to my VC++.NET application. Ehsan Behboudi