| View previous topic :: View next topic |
| Author |
Message |
arcray Valued Contributor


Joined: 13 Jul 2001 Posts: 242 Location: Aude, France
|
Posted: Thu Apr 25, 2002 5:42 am Post subject: Tracing does not work after the first 1000 lines or so? |
|
|
I have an application that is around 3500 lines long and when I am following the flow by tracing, the VDS IDE stops tracing at around 1000 lines. It happily traces all the way up to around 1000, but jumps to the top of the listing if trying to access any more than 1000.
Is there any way around this?
Thanks in advance... _________________ Andrew GRAY
If you don't know I am looking for work, I won't get the job.
andrewrcgray.com |
|
| Back to top |
|
 |
DanTheMan Contributor


Joined: 15 Mar 2002 Posts: 56 Location: Sweden
|
Posted: Thu Apr 25, 2002 9:28 am Post subject: |
|
|
arcray!
I've traced a script with 1850 lines. Tracing with "F8" and debug window
enabled works fine for me. VDS version 4.50.
Rgs.
Dan |
|
| Back to top |
|
 |
Mac Professional Member

Joined: 08 Jul 2000 Posts: 1585 Location: Oklahoma USA
|
Posted: Thu Apr 25, 2002 8:36 pm Post subject: |
|
|
Here's a few ideas...
1. Make sure ya have matching IF/END functions
(an END for every IF).
2. Don't jump out of REPEAT/UNTIL loops with GOTO.
3. If all else fails, ya can put some @ask() functions every
100 lines or so (to start) and have them show some data to
give you an idea of what's happening (a status bar is handy
for info too). The yes/no can be used to continue or exit
(remember to include line numbers in the info).
Cheers, Mac  _________________ VDSug.dll does file IO, check/disable menu items,
non-VDS dlls, draw functions and more...
Free download (30k dll size) at:
http://www.vdsworld.com/download.php?id=361
 |
|
| Back to top |
|
 |
|