Debugging

BlitzMax Forums/BlitzMax Beginners Area/Debugging

kiami(Posted 2005) [#1]
I need someone help me to know how to debug few line of codes using BMax debugger. Just tell me how to begin with. It seems to me 'step', 'step in', doesn't look like working like MS VS. I have written thousands lines of codes without using debug. Now I think I need it to make my work faster. Thanks.


Matthew Smith(Posted 2005) [#2]
medi

Put 'DebugStop' in the section of code you wish to test (just before the point you wish to start). The debugger will then kick into action allowing you to step through the code from that point onwards.

The Debug Window will display the required variable information as you go.


kiami(Posted 2005) [#3]
Thanks, good to know.