I am programming in Borland C++ Enterprise 5. I need a popummenu to be shown when i click a picture. But i want it to be shown at a certain place, not by the cursor. Please help.
This is a discussion on !!!PopupMenu!!! within the C++ Programming forums, part of the General Programming Boards category; I am programming in Borland C++ Enterprise 5. I need a popummenu to be shown when i click a picture. ...
I am programming in Borland C++ Enterprise 5. I need a popummenu to be shown when i click a picture. But i want it to be shown at a certain place, not by the cursor. Please help.
From MSDNTrackPopupMenu
The TrackPopupMenu function displays a shortcut menu at the specified location and tracks the selection of items on the menu. The shortcut menu can appear anywhere on the screen.
BOOL TrackPopupMenu(
HMENU hMenu, // handle to shortcut menu
UINT uFlags, // screen-position and mouse-button flags
int x, // horizontal position, in screen coordinates
int y, // vertical position, in screen coordinates
int nReserved, // reserved, must be zero
HWND hWnd, // handle to owner window
CONST RECT *prcRect // ignored
);