Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles / desktop / MFC

Disable the context sensitive help

3.50/5 (2 votes)
14 Apr 2011CPOL 8K  
Sometimes we tend to enable the context sensitive help while creating a project, how to disable that later and get rid or error/information pops on clicking F1 while the application is running.
Open the mainfrm.cpp and comment out the help commands


SQL
BEGIN_MESSAGE_MAP(CMainFrame, CFrameWnd)
    ON_WM_CREATE()
    // Global help commands
//  ON_COMMAND(ID_HELP_FINDER, &CFrameWnd::OnHelpFinder)
//  ON_COMMAND(ID_HELP, &CFrameWnd::OnHelp)
//  ON_COMMAND(ID_CONTEXT_HELP, &CFrameWnd::OnContextHelp)
//  ON_COMMAND(ID_DEFAULT_HELP, &CFrameWnd::OnHelpFinder)
        ON_MESSAGE(WM_SET_STATUS_BAR_TEXT, &CMainFrame::SetStatusBarText)
END_MESSAGE_MAP()

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)