Label Special Keys

Top  Previous  Next

This function sets the tooltips for the special key buttons when the Special Keys window is shown.

Parameter

Value or Description

Lead in

CHR$(27) CHR$(3)

Special key #

see below

Tool tip text

80 characters max followed with CHR$(0)

 

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)

Print

CHR$(39)

sSend

CHR$(40)

sNew Line

CHR$(41)

 

Example

To label the Print key with the tooltip "Generate AR report...":

PRINT CHR$(27);CHR$(2);

PRINT CHR$(39);

PRINT "Generate AR report...";CHR$(0);