IDE_CreatePopupItem

tfferreira

Member²
Hi,

I have a question related with IDE_CreatePopupItem.
The API documentation refer that if we want to select more than one item for the same object type we just need to use the '+' symbol. Ex: TABLE+.
This strategy will call OnMenuClick for each selected item.
Is there a way to select multiple items ( several tables) and call OnMenuClick just one time ?

Thanks
Tiago
 
Thanks for the reply.

I want to select several tables and then I need to display a window with information about those selected items.
OnMenuClick will automatically open that window N times where N is the total of tables selected.
I only want display the window one time, since it contains info about all the selected tables and does not make sence to display N times the same data.

Probably this can be achieved with other functions, if that is the case please let me know.

Many Thanks
Tiago
 
You can get a list of selected items with the IDE_GetBrowserItems function. That is what you were looking for, correct?
 
Back
Top