Hello! I have pop-up menu, for example:
- "..."
- "PopUp-menu"
- "Menuitem1"
- "Menuitem2"
- "..."
How to popup "PopUp-menu" using SendMessage function? Is it possible? course Menuitem has ID, and POPUP menu - has not
Hello! I have pop-up menu, for example:
How to popup "PopUp-menu" using SendMessage function? Is it possible? course Menuitem has ID, and POPUP menu - has not
the "ID" of a popup menu is its handle, but it's not clear what you mean by "popup the menu using SendMessage
". What you would normally do is to get the handle of the "PopUp-Menu" and then pass that to TrackPopupMenu rather than SendMessage
.