CWinApp::m_pszHelpFilePath

包含路径到应用程序的帮助文件。

LPCTSTR m_pszHelpFilePath;

备注

默认情况下,框架初始化 m_pszHelpFilePath 为“.HLP”追加的应用程序的名称。 若要更改帮助文件的名称,请设置 m_pszHelpFilePath 指向包含预期帮助文件的完整名称的字符串。 若要执行此操作的一种简便在应用程序的 InitInstance 功能。 m_pszHelpFilePath 是类型 **const char***的公共变量。

备注

如果赋值。m_pszHelpFilePath,在堆必须动态分配它。CWinApp 调用析构函数 free( )与此指针。您许多若要使用 _tcsdup( ) 运行库函数执行分配。另外,请释放内存与当前指针在分配新值之前。例如:

//First free the string allocated by MFC at CWinApp startup.
//The string is allocated before InitInstance is called.
free((void*)m_pszHelpFilePath);
//Change the name of the .HLP file.
//The CWinApp destructor will free the memory.
m_pszHelpFilePath = _tcsdup(_T("c:\\somedir\\myhelp.hlp"));

要求

Header: afxwin.h

请参见

参考

CWinApp选件类

层次结构图