Kbase P92437: How to know the row of a widget in a frame on the push of a function key?
Autor |
  Progress Software Corporation - Progress |
Acesso |
  Público |
Publicação |
  24/08/2004 |
|
Status: Unverified
GOAL:
How to know the row of a widget in a frame on the push of a function key?
FIX:
The following would messages the row of a fill-in on the push of F9:
DEFINE VARIABLE c AS CHARACTER EXTENT 5 NO-UNDO.
ON 'f9':U ANYWHERE
DO:
MESSAGE SELF:ROW
VIEW-AS ALERT-BOX INFO BUTTONS OK.
END.
UPDATE c WITH FRAME f NO-LABEL.