I am using the Windows 10 Enterprise OS. I have a help file in CHM format that cannot be opened in a Windows 10 box. All it says is "Failed to launch help." I wrote a tiny program to try this. Here's the important bit of code:
void CHelpFileTEstDlg::OnBnClickedButton1()
{
CWinApp* pApp = AfxGetApp();
AfxMessageBox(pApp->m_pszHelpFilePath);
pApp->m_pszHelpFilePath = _T("C:\\Dev\\LD\\RSLogix5000\\BuildProducts\\Debug\\PSModuleENU.chm");
AfxMessageBox(_T("Does this help button work?"), MB_YESNO | MB_HELP | MB_ICONEXCLAMATION, 196743);
}
When I click the Help button, I get the same "Failed to launch help." message, but also, a web page appears in my browser saying that help system I'm using is not support in Windows 10. Here's that link.
I had already asked a question in this context a day before (see also for further information).
Is there a tool I can use to modernize the CHM file to make it usable on my machine?