Kbase P22700: Lost 'GO' event when use RETURN in a browse
Autor |
  Progress Software Corporation - Progress |
Acesso |
  Público |
Publicação |
  10/16/2008 |
|
Status: Verified
FACT(s) (Environment):
Progress 9.x
OpenEdge 10.0A
SYMPTOM(s):
Lost event when the "RETURN" statement is used in a browse "ENTRY" trigger
Once the procedure is finished, is not possible anymore to run it again (F2) from Procedure editor.
FIX:
Use the "RETURN NO-APPLY" statement instead of the "RETURN" statement in the trigger: ON 'entry':U OF Widget-1 IN FRAME frame-2 DO: APPLY "value-changed" TO Widget-1 IN FRAME frame-2 . RETURN NO-APPLY. END.