Kbase P25774: Value-change trigger is moving the cursor to the left .
Autor |
  Progress Software Corporation - Progress |
Acesso |
  Público |
Publicação |
  23/05/2003 |
|
Status: Unverified
FACT(s) (Environment):
Progress 9.1D
SYMPTOM(s):
Value-change trigger is moving the cursor to the left .
CAUSE:
Applying a consecutive VALUE-CHANGED trigger to a different widget in the frame
FIX:
Before leaving the value-changed trigger apply "END" to self widget.
Example:
ON VALUE CHANGED OF field1 IN FRAME gDialog
DO:
ASSIGN field2:SCREEN-VALUE = "anything here".
APPLY "VALUE-CHANGED" TO field2.
APPLY "END" TO SELF.
END.