0
votes
1answer
44 views
How do I get mnemonics in TrackPopupMenu?
I have a win32/MFC application with a context menu that I build programatically:
CPoint pt;
GetMenuPopupPos(&pt);
CAtlString csItem = _T("&Example");
CMenu menu;
menu.Create …
