Consultor Eletrônico



Kbase P15422: ENTER key does not work corectly on GUI UI
Autor   Progress Software Corporation - Progress
Acesso   Público
Publicação   1/29/2003
Status: Unverified

FACT(s) (Environment):

Progress 9.1x

FACT(s) (Environment):

Progress 9.x

SYMPTOM(s):

ENTER key does not work corectly on GUI UI

RETURN trigger applies LEAVE in current field and ENTRY to another field but cursor remains in current field

FIX:

Leave RETURN trigger with NO-APPLY.
ON return OF FILL-IN-1 IN FRAME fMain /* Fill 1 */
DO:
APPLY "leave" TO SELF.
APPLY "entry" TO fill-in-2.
RETURN NO-APPLY. /* this line will make thinks happen */
END.