Word wrapping in procedure window
ysspatil
Or equivalently, is there a way to continue an expression over more than one line? i.e. can
a = b + c + d + e
be somehow manually entered in the procedure window as
a = b + c +
d + e
No.
Yes. Execute:
DisplayHelpTopic "Line Continuation"
However, it is often more readable and easier to debug if you use temporary variables to store intermediate values. For example:
Variable part2 = c + d
Variable result = part1 + part2
August 5, 2017 at 09:23 am - Permalink