Hello. I have a program I am trying to debug to see why it will
not completely finish. There are two END statements, but the
program is stopping somehwhere else.
It is an only 211 lines long, and I found the subroutine where
it stops, however there is no END statement there. Is there a
way to use debug to see the last (or next to last) line it is
in before stopping? I think from that point, I can work
backwards. This one is one frustrating little minx.
Or, if I can set the debugger to pause when a variable reaches
a certain value, that would probably help. If I could set it
somewhere to break when CityKount = 7147, and then step
line-by-line from that point and watch everything, it might help.
Reason I know it is not finishing is it is reading and examining
over 1.4 million lines of information. It is stopping after it
reads 7,148th line for some odd reason. No error message, so I'd
like to find the last line executed so I can see what variable
went haywire.
Thank you.
Robert
------------------
[This message has been edited by Robert E. Carneal (edited November 15, 2006).]
not completely finish. There are two END statements, but the
program is stopping somehwhere else.
It is an only 211 lines long, and I found the subroutine where
it stops, however there is no END statement there. Is there a
way to use debug to see the last (or next to last) line it is
in before stopping? I think from that point, I can work
backwards. This one is one frustrating little minx.

Or, if I can set the debugger to pause when a variable reaches
a certain value, that would probably help. If I could set it
somewhere to break when CityKount = 7147, and then step
line-by-line from that point and watch everything, it might help.
Reason I know it is not finishing is it is reading and examining
over 1.4 million lines of information. It is stopping after it
reads 7,148th line for some odd reason. No error message, so I'd
like to find the last line executed so I can see what variable
went haywire.
Thank you.
Robert
------------------
[This message has been edited by Robert E. Carneal (edited November 15, 2006).]
Comment