This function enables or disables the special key buttons when the Special Keys window is shown.
Parameter |
Value or Description |
Lead in |
CHR$(27) CHR$(8) |
Special key # |
see below |
Enable / Disable |
"0" to disable "1" to enable |
Special key table:
Function |
Value |
Execute |
CHR$(32) |
Cancel |
CHR$(33) |
Help |
CHR$(34) |
Send |
CHR$(35) |
New Line |
CHR$(36) |
sExecute |
CHR$(37) |
sCancel |
CHR$(38) |
CHR$(39) |
|
sSend |
CHR$(40) |
sNew Line |
CHR$(41) |
Example
To disable the button for the Print key:
PRINT CHR$(27);CHR$(8);
PRINT CHR$(39);
PRINT "0";