Consultor Eletrônico



Kbase P19196: How to set the CURSOR-RIGHT and CURSOR-LEFT key to function
Autor   Progress Software Corporation - Progress
Acesso   Público
Publicação   2/12/2003
Status: Unverified

GOAL:

How to set the CURSOR-RIGHT and CURSOR-LEFT key to function as a TAB and BACK-TAB

FIX:

ON CURSOR-RIGHT ANYWHERE
DO:
APPLY "TAB":U TO SELF.
RETURN NO-APPLY.
END.

ON CURSOR-LEFT ANYWHERE
DO:
APPLY "BACK-TAB":U TO SELF.
RETURN NO-APPLY.
END.