Hi.
I'm a MUMPS programmer and often errors are thrown at me in a format like this: <SYNTAX>PTWNDW^cROU123+4. That means I have to look here:
Okay, actually 56+4 is quite easy to solve, but sometimes a routine starts at line 137 and errors occur at +73, +119 and so on, and finding them gets quite annoying. It would be nice to add an temporary offset to line numbers like this
Is this possible?
Edit: I'm using UEStudio '06, but I'm sure its more a question concerning the underlying editor.
TIA
Z.
I'm a MUMPS programmer and often errors are thrown at me in a format like this: <SYNTAX>PTWNDW^cROU123+4. That means I have to look here:
Code: Select all
...
55 ;
56 PTWNDW(DX,DY,ABC) ; foo
57 N A,B,C
58 Q:ABC="" "bar"
59 S A=42
60 S B=A+(DX*C <--- (56+4=60)
61 ...
...
Code: Select all
...
-- ...
-- Q ERR
-- ;-
0 PTWNDW(DX,DY,ABC) ; foo
1 N A,B,C
2 Q:ABC="" "bar"
3 S A=42
4 S B=A+(DX*C <--- (0+4=4)
5 ...
...
Edit: I'm using UEStudio '06, but I'm sure its more a question concerning the underlying editor.
TIA
Z.