winhelp

How can I open a help file (chm or so) from my GUI developed in VC++ 2008?

若如初见. 提交于 2019-12-24 03:00:16
问题 I'm trying to add some help to my GUI developed in VC++ 2008. I want to compile a chm file, or a hlp file that can be accessed from my menu. Anyone can give me any idea about how to do this? Thanks a lot 回答1: Under HKLM\Software\Microsoft\Windows\HTMLHelp , create an entry named help.chm value C:\path to\help file.chm Then to open the chm at a particular topic call HtmlHelp(m_hWnd, "Help.chm", HH_DISPLAY_TOPIC, NULL); 回答2: You could just ShellExecute the .chm file. That will open it.

How to convert HLP files into CHM files

对着背影说爱祢 提交于 2019-11-27 21:35:47
I need some help , I have some files .hlp and I want to convert it in .chm files because these files don't run on windows 10. For your help Thank you! I see two or more solutions depending on your requirements: Converting WinHelp (HLP) to HTMLHelp (CHM) or PDF Running WinHelp files on Windows10 Convert WinHelp (HLP) to HTMLHelp (CHM): A tutorial on my site gives a step-by-step description how to convert WinHelp (HLP) to HTMLHelp (CHM) on a freeware/shareware and "low budget" level. The conversion project example from the download section includes a working structure and example files. You can

How to convert HLP files into CHM files

三世轮回 提交于 2019-11-26 23:04:08
问题 I need some help , I have some files .hlp and I want to convert it in .chm files because these files don't run on windows 10. For your help Thank you! 回答1: I see two or more solutions depending on your requirements: Converting WinHelp (HLP) to HTMLHelp (CHM) or PDF Running WinHelp files on Windows10 Convert WinHelp (HLP) to HTMLHelp (CHM): A tutorial on my site gives a step-by-step description how to convert WinHelp (HLP) to HTMLHelp (CHM) on a freeware/shareware and "low budget" level. The