Feb 5, 2002 #1 barbacot Programmer Feb 5, 2002 4 FR How can I remove the menu that comes with a standard MFC project? I mean the one that contains File, Edit and Help items.
How can I remove the menu that comes with a standard MFC project? I mean the one that contains File, Edit and Help items.
Feb 5, 2002 #2 Jeffray Programmer Jan 29, 2002 144 CA inside your initInstance function, add : pMainFrame->SetMenu(NULL); just before pMainFrame->ShowWindow(...); Upvote 0 Downvote
inside your initInstance function, add : pMainFrame->SetMenu(NULL); just before pMainFrame->ShowWindow(...);