XIDE: Add variables to Watch
Posted: Wed Oct 08, 2025 10:39 am
Hi Chris,
When you add a variable to Watch, you immediately see its value and type. However, if this variable is contained in an iterator like For, ForEach, etc., then the Watch panel doesn't refresh the variable value in the next iteration.
For example, add loPerson:Age to Watch:
You will see its value and type, but if you move to the next person, the Watch panel shows <Unavailable>. You have to delete it and add it again, which is quite annoying.
thanks.
When you add a variable to Watch, you immediately see its value and type. However, if this variable is contained in an iterator like For, ForEach, etc., then the Watch panel doesn't refresh the variable value in the next iteration.
For example, add loPerson:Age to Watch:
Code: Select all
foreach loPerson as Person in loPeople
switch loPerson:Age
...
endswitch
next
thanks.