Feb 5, 2002 #1 barbacot Programmer Joined Feb 5, 2002 Messages 4 Location 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 Joined Jan 29, 2002 Messages 144 Location 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(...);