Viewing dummy string variables: Difference between revisions
Jump to navigation
Jump to search
(Created page with "__TOC__ <span class="f_Para">If a line has </span><span class="f_Para" style="font-style: italic; font-weight: bold;">?&name</span><span class="f_Para"> (global variable)...") |
No edit summary |
||
Line 13: | Line 13: | ||
'''See Also''': | '''See Also''': | ||
: [[ | : [[Displaying line information and editing procedures|Locating and editing procedure source files]] | ||
: [[Watching global variables|Watching global variables]] | : [[Watching global variables|Watching global variables]] | ||
: [[ | : [[The tabbed pages#Source Code tab|Source Code tab]] | ||
[[Category:Debugger Home]] | [[Category:Debugger Home]] |
Revision as of 16:33, 10 January 2023
If a line has ?&name (global variable) dummy string substitutions, the original line, prior to substitution of global variable values, is displayed in the pop up that is shown when you select Line Information.
For example, a line you suspect has a dummy string substitution is displayed in the Source Code page as:
print 'Hello'
If you select Line Information after right clicking a line with substitutions, you see a display like:
To watch the value of a dummy string global variable, you must specify it explicitly with a "g." prefix (omitting the ?& characters) and add it to the Watch Window.
See Also: