HP Forums

Full Version: Error message
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi all,

At runtime I get this error:

"Unmatch control word".

Where to look in the source code for?

Cheers,

Jan
(10-02-2015 06:56 AM)Powersoft Wrote: [ -> ]Hi all,
At runtime I get this error:
"Unmatch control word".
Where to look in the source code for?
Cheers,
Jan
1) "Unmatch control word" would be a much better subject.
2) have a look at Thread 'Unmatch control word'
Hi Jan,

It's possible you have encountered a variable context issue, such as a local variable that is no longer in scope in the current program.

You might find the debugger useful, which can be started from the program menu, or by inserting debug as a line in your code. This would allow you to single step through the each line of your code, while watching the content of your variables (or locate errors).

-Dale-
Thanks Dale,

But how to start debugging a session on the emulator?

Cheers,

Jan
Just use [Shift] [Program], it will be the 5th soft menu choice.
Hello,

you can also do:
debug(program(parameters))

or just place a debug; statement (as a breakpoint) in your program.

Note, you can debug PPL, but CAS program debugging is not "great".

Cyrille
Reference URL's