VC, edit control the default point of the right button will pop up the shortcut menu, such as copy, paste and so on, but sometimes we want to remove, the data collected from the Internet is mainly sub-class edit control, and then handle wm_contextmenu rest, in fact, nothing in this message can be done.
In general, editing controls that can be sub-typed can be used to mask the right-click menu in this way, but how do you block it if you can't subclass it? For example, a control is on a dlalogbar.
If you want to pop-up menu, then just in the wm_contextmenu rest of the processing function, pop-up menu, with TrackPopupMenu ();
void Cmyapptest::ontextmenu (cwnd* pWnd, CPoint Point)
{
Todo:add your message Handler code here
CMenu menu;
Menu. LoadMenu (idr_menu_test);
Menu. GetSubMenu (1)->trackpopupmenu (tpm_leftalign| Tpm_rightbutton,point.x,point.y,this);
}