How to tell the Debugger to pause with a different key than the Pause key?

Question ID : 196
Created on 2013-02-13 at 7:24 AM
Author : Veryant Support [support@veryant.com]

Online URL : http://support.veryant.com/support/phpkb/question.php?ID=196



The Pause key on the keyboard makes the debugger to re-enter in debug mode after a "continue" command has been issued.

On some laptops the Pause key is missing from the keyboard, therefore you need to associate the same function to another key.

The Pause function is activated by the exception value 65535.
With this rule in mind, you can associate the exception value 65535 to a key of your choice by using isCOBOL configuration properties.

For example, if you want to use F6 instead of Pause in order to re-enter in debug mode, launch the Debugger as follows

iscrun -d -Discobol.key.f6=exception=65535 MYPROGRAM 


Back to Original Question