Browse - programming tips - invoking chm fileDate: 2008sep18 Platform: win32 Language: C/C++ Q. How do I invoke a .CHM help file from my program? A. Like this: #include <htmlhelp.h> HWND InvokeChmFile(HWND hwndMe, LPCSTR szChmFile) { return HtmlHelp(hwndMe, szChmFile, HH_HELP_CONTEXT, 0); } If you want to dynamically load HtmlHelp, its in hhctrl.ocx
Add a commentSign in to add a comment |