There is a function A. When I call twice
arg = x
DO A(arg)
arg = y
DO A(arg)
if error X occurs in A, own error handler intercepts:
Same result, shows 'BB':
How to display all results, THANKS!
arg = x
DO A(arg)
arg = y
DO A(arg)
if error X occurs in A, own error handler intercepts:
wait 'wrong '+arg WINDOW NOWAIT TIMEOUT 5
. Shows the last call (wrong y)Same result, shows 'BB':
WAIT 'WW' WINDOW NOWAIT TIMEOUT 3
WAIT 'BB' WINDOW NOWAIT TIMEOUT 3
How to display all results, THANKS!