×
The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.
On 13/03/2019 17:11, Ken Killian wrote:
Thanks Buck! I just wonder why it does not work for me.
I have to concur with Ken and Buck - there is a bug in RDi Debug. Just
tried this simple example:
**Free
// Compile with *LISTING or *ALL debug view
// In RDI *LISTING view, double-click each variable identifier to select
and place in MONITOR View
// Case A: Selected
// Case B: not selected
//--+---10----+---20----+---30----+---40
dcl-s Var_a char(3); // (A)
dcl-s Var_b char(3); // (B)
dcl-s Var_c char(3); // (A)
Var_a = 'ABC'; // (A)
Var_b = 'DEF'; // (B)
Var_c = 'GHI'; // (A)
*InLR = *On;
dump(a);
return;
I have not spotted this before because I usually debug from the *SOURCE
view. I am used to a right-click on the variable, then MONITOR
EXPRESSION from the context menu. (Yup - long-winded, I know. But works
in all cases)
A left double-click in the *LISTING view has mixed results, depending on
the position of the source line. (I think the light/dark blue
colourisation is a red-herring.) Another thing: the hover help does not
work for VAR_B either - could this be related?
So, the problem is reproducible - PMR time, Ken!!
Brian.
As an Amazon Associate we earn from qualifying purchases.