[RESOLVED] trace code at run time
hello ,
i know this may be a really easy question .. im working on a project that my ex colleague has been working on for quite a while and it really huge. so i have to review it all over. do you guys know a way to keep in track and see the code WHILE im running the application to know which line of code does what. . .
Re: trace code at run time
What do you mean like debuging in the IDE? Or do you just want a log of which procedures that were run at the time? Please explain a little more...
Re: trace code at run time
Re: trace code at run time
for example .. if button X does function Y
as i press button X
i want to see the code highlighted or pointed at in the function area .. is that more clear ?
Re: trace code at run time
1.Double click the button.
2.You will see a coding window.
3.Press F9
4.Now run the program.
5.Click the respective button.
6.See what happens.The cursor will move to the coding window highlighting the currently running line?
Re: trace code at run time
thanks much
it does highlight the currently running line.. it just doesnt move on to the next executing line and so on.. the applications pauses .
Re: trace code at run time