HTML Help
-
I have an existing Dialog-based application which currently calls ::WinHelp(...); for all help. I would like to upgrade this app so that it uses HTML Help instead. I read that I have to set the help mode to HTML (call EnableHtmlHelp() in the app's constructor. Unfortunately, I cant seem to get this to work. When I try to compile, I get an error indicating that the function EnableHtmlHelp() is undefined. I cant find any info as to what, if any, headers are missing or library references. Any help would be appreciated. Thanks. LA
-
I have an existing Dialog-based application which currently calls ::WinHelp(...); for all help. I would like to upgrade this app so that it uses HTML Help instead. I read that I have to set the help mode to HTML (call EnableHtmlHelp() in the app's constructor. Unfortunately, I cant seem to get this to work. When I try to compile, I get an error indicating that the function EnableHtmlHelp() is undefined. I cant find any info as to what, if any, headers are missing or library references. Any help would be appreciated. Thanks. LA
-
http://msdn2.microsoft.com/en-us/f08efa3d.aspx[^]
"What classes are you using ? You shouldn't call stuff if you have no idea what it does"
Christian Graus in the C# forumled mike
Here is some help from _Russel_. Add the macros
ON_COMMAND(ID_HELP_FINDER, CMDIFrameWnd::OnHelpFinder) ON_COMMAND(ID_DEFAULT_HELP, CMDIFrameWnd::OnHelpFinder) ON_COMMAND(ID_HELP, CMDIFrameWnd::OnHelp) ON_COMMAND(ID_CONTEXT_HELP, CMDIFrameWnd::OnContextHelp)
to the Mainframe map And add to the constructor of the applicationEnableHtmlHelp();
Then put the help file in the exe folder. Appu.. "If you judge people, you have no time to love them."