Alt+C is not on the list of keys that pops up in "Window Key Disable." I DESPERATELY need to disable that key. Is there another way?
[b]tardis@earthlink.net
$insert sysinclude, edit.keys
SaveAltC=@INT.CONST ;* save it just in case the system
;* is unique@INT.CONST=' ;* disabled
@INT.CONST=SaveAltC ;* re-enable
Larry Wilson
Duplicate Row (#21) in the key disable seems to work. Remember, all 3.x routines use the column/row/table syntax instead of the field/record/file notations.
akaplan@sprezzatura.com
Hello Diane,
In Pre-Initialize Process (in Paint Mode) for window define next subroutine:
SUBROUTINE ALT_C_DISABLE
KEYS.OFF=FIELD(@RECORD,CHAR(247),43)
KEYS.OFF := CHAR(254):CHAR(0):CHAR(46)
* ALT-C IS CHAR(0):CHAR(46)
@RECORD=FIELDSTORE(@RECORD,CHAR(247),43,-1,KEYS.OFF)
RETURN