Registered User Joined: 10/7/2004 Posts: 41
|
In spite of what the new Programmer's Reference states on page 48, debugging with Visual Studio 2008 does not always work correctly; the good news is that Visual Studio 2005 seems to work correctly all the time ( so far...).
If your code is running correctly, VS 2008 seems to work most of the time, but it jumps off into never-never land eventually and it becomes necessary to stop debugging (since there's no clear indication of what line of your code is executing, if any) from within VS to clear the problem. I would recommend sticking with VS 2005 as a debugger until this gets fixed.
|
Administration
Joined: 9/18/2004 Posts: 3,522
|
One trick (if you're debugging when the market is open) is to suspend all threads except the one you're running on. This will prevent stockfinder from going off in the background and trying to perform more work while the debugger is attached.
Ken Gilb (Kuf) Chief Software Engineer - Worden Brothers Inc. Try/Catch - My RealCode Blog
|