Kbase P145610: How to get the label of the selected widget from within an ABL trigger
Autor |
  Progress Software Corporation - Progress |
Acesso |
  Público |
Publicação |
  01/05/2009 |
|
Status: Unverified
GOAL:
How to get the label of the selected widget from within an ABL trigger
FACT(s) (Environment):
All Supported Operating Systems
Progress 7.x
Progress 8.x
Progress 9.x
OpenEdge 10.x
FIX:
Use the SELF handle and check its LABEL attribute.
e.g.
ON MOUSE-SELECT-CLICK ANYWHERE DO:
MESSAGE SELF:LABEL VIEW-AS ALERT-BOX.
END.