Showing posts with label Code Snippet. Show all posts
Showing posts with label Code Snippet. Show all posts

Sunday, January 14, 2007

Context menu


void CHook1View::OnContextMenu(CWnd* /*pWnd*/, CPoint point)
{


CMenu menu;
menu.LoadMenu(IDR_MAINFRAME );
CMenu* pmenu;
pmenu=menu.GetSubMenu(0);
pmenu->TrackPopupMenu(0,point.x,point.y,this);

}