A Andy B. Mar 3, 2009 #1 I have need to see what some values are while the dll I have a class in is being ran. How do you do that?
I have need to see what some values are while the dll I have a class in is being ran. How do you do that?
M Martin H. Mar 3, 2009 #2 Hello Andy, I have need to see what some values are while the dll I have a class in is being ran. How do you do that? Click to expand... If you compile the DLL as a debug version, and then import it into a project, you can step through it just by setting a breakpoint and single-step further. Best regards, Martin
Hello Andy, I have need to see what some values are while the dll I have a class in is being ran. How do you do that? Click to expand... If you compile the DLL as a debug version, and then import it into a project, you can step through it just by setting a breakpoint and single-step further. Best regards, Martin
F Family Tree Mike Mar 3, 2009 #3 Andy B. said: I have need to see what some values are while the dll I have a class in is being ran. How do you do that? Click to expand... Keeping all of your projects in a single solution is one way to solve this, in addition to Martin's solution.
Andy B. said: I have need to see what some values are while the dll I have a class in is being ran. How do you do that? Click to expand... Keeping all of your projects in a single solution is one way to solve this, in addition to Martin's solution.
A Andy B. Mar 3, 2009 #4 got it... Family Tree Mike said: Keeping all of your projects in a single solution is one way to solve this, in addition to Martin's solution. Click to expand...
got it... Family Tree Mike said: Keeping all of your projects in a single solution is one way to solve this, in addition to Martin's solution. Click to expand...