Debugging a Dll
-
I have a exe through which I call a function of the dll . I want to debug the dll while i Am passing the parameters to that function throught the exe. I have a code of the dll with me . Can Anyone suggest A solution for it. Samir Sood
I suppose something gets wrong into the dll... if you have the code of the dll, a clumsy solution would be to integrate the function into your main code, and watch the effect. Or make a separate program where you pass the same parameters as in your program (I still believe in the "Same cause, same effects" :) ) I think however there should be a better way to do it ... ~RaGE();
-
I suppose something gets wrong into the dll... if you have the code of the dll, a clumsy solution would be to integrate the function into your main code, and watch the effect. Or make a separate program where you pass the same parameters as in your program (I still believe in the "Same cause, same effects" :) ) I think however there should be a better way to do it ... ~RaGE();
-
I have a exe through which I call a function of the dll . I want to debug the dll while i Am passing the parameters to that function throught the exe. I have a code of the dll with me . Can Anyone suggest A solution for it. Samir Sood
Load the DLL and the exe project into the same workspace. Make the DLL the active project, set your breapoints etc. When you run in debug (F5) point to your exe program as the one to run and go from there. Roger Allen Sonork 100.10016 If I had a quote, it would be a very good one.
-
I have a exe through which I call a function of the dll . I want to debug the dll while i Am passing the parameters to that function throught the exe. I have a code of the dll with me . Can Anyone suggest A solution for it. Samir Sood
what i do is: open that file of dll into exe in which u wish to go while debuging u can do it like this goto file menu option & select open(not open workspace) then select the file of dll & say ok if u set break points in that file & then debug the exe the control will go to ur dll file u can open more then one dll file in exe & also navigate through them using window menu option surbinsho