Kbase P17374: How to determine what Progress is receiving when pressing Function Keys
Autor |
  Progress Software Corporation - Progress |
Acesso |
  Público |
Publicação |
  10/15/2008 |
|
Status: Verified
GOAL:
How to determine what Progress is receiving when pressing Function Keys
FACT(s) (Environment):
UNIX
FIX:
1. On the UNIX command line, type Control V and then press the key
being modified This will show the escape sequence the key is sending.
2. Check to see what is being received through the Progress Editor. Type the procedure below into the Progress Editor. When a function key is pressed, the function and label for that key will be displayed.
repeat:
readkey.
display keyfunction(lastkey).
display keylabel(lastkey).
end.