Debugging Dll
-
How can debug a dll in a runtime? I have a command line program which uses a dll and i would like to debug the dll during run-time. how can i do that. Shenthil
In your DLL project Specify your Debug - Executable for debug session. (the executable which uses the DLL) Sonork 100.41263:Anthony_Yio
-
In your DLL project Specify your Debug - Executable for debug session. (the executable which uses the DLL) Sonork 100.41263:Anthony_Yio
Alternatively, in the EXE project, go to Project > Settings > Debug tab > Additional DLLs category. Add any DLLs to be debugged along with the project here. A third way, IIRC, is to add both projects to the same workspace.
-
In your DLL project Specify your Debug - Executable for debug session. (the executable which uses the DLL) Sonork 100.41263:Anthony_Yio
-
Alternatively, in the EXE project, go to Project > Settings > Debug tab > Additional DLLs category. Add any DLLs to be debugged along with the project here. A third way, IIRC, is to add both projects to the same workspace.