|
| Iniciado por guest, 26,ene. 2016 09:15 - 4 respuestas |
| |
| | | |
|
| |
| Publicado el 26,enero 2016 - 09:15 |
Hi, Maybe a stupit question . How can I see what is in an array in the debugger?
I know it is possible to see what is in it, in the past I have seen it . But I donnot know How.
regards Allard |
| |
| |
| | | |
|
| | |
| |
| Publicado el 26,enero 2016 - 09:23 |
for i=1 to arraycount(nameofthearray) trace(nameofthearray) end |
| |
| |
| | | |
|
| | |
| |
| Publicado el 26,enero 2016 - 09:26 |
Allard,
you have to doubleclick on the value in the debugger pane.It will open a popup with all the elemens of your array, even if it holds structures. Besides that you can leave this window open and continue debugging. Be aware that these variables get evaluated every step (if you step through your code) and sometimes that can take some extra time. Don't be mislead by that. |
| |
| |
| | | |
|
| | |
| |
| Publicado el 26,enero 2016 - 09:29 |
Hi,
Yes I put a trace on it now .But I know it is possible to klik somwhere in the debugger and get a table like view with the array in it and how it evolves
regards Allard |
| |
| |
| | | |
|
| | |
| |
| Publicado el 26,enero 2016 - 10:01 |
HI Allrad,
add a break point in the code and do a right click on the array. Now select "Add the expression to the debuger". Now a double click on the "Value" column of the debuger grid will popup the details of the array.
Cheers, Sascha |
| |
| |
| | | |
|
| | | | |
| | |
|