[Stackoverflow] [Progress OpenEdge ABL] How can I turn a popup menu invisible?

Status
Not open for further replies.
D

Dominique

Guest
I'm working with Progress release 11.6, appBuilder and procedure editor.

I'm creating a new window, based on another one. That other window contains a browser, on which a popup menu is attached.
In my copy I don't want to see the popup menu at this moment (in other words, I'd like to disable it, so that the user does not see it).

I have tried putting VISIBLE to FALSE, HIDDEN to TRUE, but I'm always getting into problems.

My code looks as follows, does anybody know how I can turn the popup-menu invisible?

Code:
DEFINE MENU popup-menu-browser
       MENU-ITEM m_Copy LABEL "Copy" ACCELERATOR "CTRL-C"
       MENU-ITEM m_Cut  LABEL "Cut"  ACCELERATOR "CTRL-X"
       ...

browser-object:POPUP-MENU = MENU popup-menu-browser:HANDLE

// not working:
MENU POPUP-MENU-browser:HIDDEN = TRUE.

Thanks in advance

Continue reading...
 
Status
Not open for further replies.
Top