Kbase P51126: How to scroll up and down a browse using a keyboard key or k
Autor |
  Progress Software Corporation - Progress |
Acesso |
  Público |
Publicação |
  30/10/2003 |
|
Status: Unverified
GOAL:
How to scroll up and down a browse using a keyboard key or key combination?
FIX:
The following code will cause the named browse to scroll up whenever the user presses the keyboard 'ALT-U' key combination:
ON 'ALT-U':U OF BROWSE browse-name DO:
APPLY 'Cursor-Up'.
END.
The following code will cause the named browse to scroll down whenever the user presses the keyboard 'ALT-D' key combination:
ON 'ALT-D':U OF BROWSE browse-name DO:
APPLY 'Cursor-Down'.
END.