Kontext Menue HOW ?

make

Member
Hi,
i want to use a kontext Menue when i click on a row of a table with the right mouse button.
How can i realize that ?
Is there a function in Progress for that ?

Greets
Make
 

cybvek

New Member
Hi!

Do you think the right click pop-up menu?

If so then, use proKB20178,
change:

CREATE MENU hMenu.
to this
CREATE MENU hMenu ASSIGN POPUP-ONLY = YES.

----- and ------------------

ASSIGN CURRENT-WINDOW:MENUBAR = hMenu:HANDLE.
to this
ASSIGN CURRENT-WINDOW:POPUP-MENU = hMenu:HANDLE.

This will assign a pop-up for the window, but you can assign that for a browse too.

Regards,

Viktor

Originally posted by make
Hi,
i want to use a kontext Menue when i click on a row of a table with the right mouse button.
How can i realize that ?
Is there a function in Progress for that ?

Greets
Make
 
Top