[Progress Communities] [Progress OpenEdge ABL] Forum Post: Add a menu on right click on Browse

Status
Not open for further replies.
J

jpatel7

Guest
How can I add a menu when I right-click on browse widget? I have tried the following code according to the documentation: ON RIGHT-MOUSE-DOWN OF br-maint IN FRAME a-frame-maint DO: define variable lv-popupMenu as handle no-undo. define variable lv-popupMenuItem as handle no-undo. define variable b1 as handle no-undo. if self:num-iterations = 0 then return no-apply. else do: self:popup-menu = lv-popupMenu. create menu lv-popupMenu assign popup-only = true title = "Browser menu". create menu-item lv-popupMenuItem assign label = "Scheduler" name = "scheduler" parent = lv-popupMenu. end. END.

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