Please enable JavaScript to view this site.

ZTERM

This function enables or disables the function key buttons when the Function Keys window is shown.

Parameter

Value or Description

Lead in

CHR$(27) CHR$(7)

Function key #

See below

Enable / Disable

"0" to disable "1" to enable

 

The function key number is 0-15 for function keys F1-F16 and 16-31 for function keys Shift F1-Shift F16 PLUS CHR$(32).

Example

To disable the button for function key F1:

PRINT CHR$(27);CHR(7);

PRINT CHR$(0 + 32);

PRINT "0";