Kbase P49248: How to get a list of disabled actions on the toolbar.p
Autor |
  Progress Software Corporation - Progress |
Acesso |
  Público |
Publicação |
  1/6/2004 |
|
Status: Unverified
GOAL:
How to get a list of DisabledActions on the toolbar.p
FIX:
DO:
DEFINE VARIABLE c AS CHARACTER NO-UNDO.
c = DYNAMIC-FUNCTION('getDisabledActions':U IN h_dyntoolbar).
MESSAGE c
VIEW-AS ALERT-BOX INFO BUTTONS OK.
END.
- or -
DO:
DEFINE VARIABLE c AS CHARACTER NO-UNDO.
{get DISABLEdActions c h_dyntoolbar}.
MESSAGE c
VIEW-AS ALERT-BOX INFO BUTTONS OK.
END.