Kbase P21815: Is there a way to know the position of a cursor in a FILL-IN ?
Autor |
  Progress Software Corporation - Progress |
Acesso |
  Público |
Publicação |
  04/01/2006 |
|
Status: Unverified
GOAL:
Is there a way to know the position of a cursor in a FILL-IN ?
FIX:
Use the CURSOR-OFFSET attribute of the FILL-IN widget. For example create a trigger on the FILL-IN as follows:
ON LEAVE OF FILL-IN-1 IN FRAME {&FRAME-NAME}
DO:
MESSAGE SELF:CURSOR-OFFSET
VIEW-AS ALERT-BOX INFO BUTTONS OK.
END.