Kbase P107168: How to make TAB and CTRL-TAB navigation in a TTY character updateable browse work the same as in a G
Autor |
  Progress Software Corporation - Progress |
Acesso |
  Público |
Publicação |
  8/3/2005 |
|
Status: Unverified
GOAL:
How to make TAB and CTRL-TAB navigation in a TTY character updateable browse work the same as in a GUI updateable browse?
FIX:
To make navigation of the TTY updateable browse work the same as that of the GUI updateable browse, implement the following browse triggers:
ON ENTRY OF BROWSE b DO:
ON TAB EDITOR-TAB.
ON CTRL-TAB TAB.
END.
ON LEAVE OF BROWSE b DO:
ON TAB TAB.
ON CTRL-TAB NEXT-FRAME.
END.