Updating graphs and tables while using debugger

Is there a way to have Igor update graphs and tables while using the debugger? I'd like to see the most recent state of graphs/tables whenever the debugger is paused. Currently, graphs and tables don't update until the debugger has finished.
I sprinkle "DoUpdate" commands around my code to accomplish this. If you like, you can make them conditional:
Constant DEBUGCODE = 1

....

#if DEBUGCODE
DoUpdate
#endif

Then when you're no longer debugging, set DEBUGCODE to 0.

John Weeks
WaveMetrics, Inc.
support@wavemetrics.com
HI John: I'll give that a try. But it seems like it would be straightforward to have a switch in the debugger to do this at each pause if desired. After all, much of my debugging consists of figuring out why my graphs and waves are not behaving.
amtravco wrote:
After all, much of my debugging consists of figuring out why my graphs and waves are not behaving.


Partial help: in recent versions of Igor (6.10+) there is an option to have the debugger display your waves as graphs or images. With the debugger open, look at the top right popupmenu and select "show wave in graph".