Home > Archive > Clarion > September 2005 > Clarion debugging
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
|
|
| peter.wensink@loparex.com 2005-09-15, 7:55 am |
| Hi all,
I am using Clarion 5.5 and i like to use the debugger included.
Can someone tell me how to display local variables ? I understand that
this should be in Stack Trace but when i started debugging i don't see
my local variables within.
I have readed the user guide about this topic but can somebody give me
more information about this ?
Thanks a lot, regards,
Peter.
| |
| clackmannan 2005-09-15, 6:55 pm |
| You can only see variable contents when you're stopped at a breakpoint,
not while the app is running
Other than making sure you're compiling in debug mode (Project->Edit,
project Properties, Debug tab - you want full mode, and check all the
boxes while you're there) there's not a lot more I can say until you
give some more info. Are you seeing your procedures listed in the
module view window, and are you able to do other 'normal' debugger
things like set breakpoints OK?
| |
| peter.wensink@loparex.com 2005-09-16, 6:55 pm |
|
clackmannan wrote:
> You can only see variable contents when you're stopped at a breakpoint,
> not while the app is running
>
> Other than making sure you're compiling in debug mode (Project->Edit,
> project Properties, Debug tab - you want full mode, and check all the
> boxes while you're there) there's not a lot more I can say until you
> give some more info. Are you seeing your procedures listed in the
> module view window, and are you able to do other 'normal' debugger
> things like set breakpoints OK?
Hello,
You are right - after stopping at a breakpoint i see the information i
like. Starting in debug i see all the information like, procedures,
stack information, global information etc...
Do you known if it is possible to debug only the own writen code
include by embeds - so not go through the calrion code but only the
code writen by yourself ?
Tkanks a lot, regards,
Peter.
| |
| clackmannan 2005-09-17, 9:55 pm |
| No, the debugger will debug the source code as it was compiled,
generated code and all.
There's no way to tell it to ignore the generated code because the
debugger doesn't know what code was generated and what code wasn't
|
|
|
|
|