how to Add the help file in SDI Application
-
how to add the help file in an SDI Application i tried with this ::HtmlHelp(this->m_hWnd,_T(" WordRecovery.chm"),HH_DISPLAY_TOPIC,NULL);
-
how to add the help file in an SDI Application i tried with this ::HtmlHelp(this->m_hWnd,_T(" WordRecovery.chm"),HH_DISPLAY_TOPIC,NULL);
sarfaraznawaz wrote:
i tried with this
And what exactly happened? [edit] This article[^] may be of interest. [/edit]
Unrequited desire is character building. OriginalGriff I'm sitting here giving you a standing ovation - Len Goodman
-
how to add the help file in an SDI Application i tried with this ::HtmlHelp(this->m_hWnd,_T(" WordRecovery.chm"),HH_DISPLAY_TOPIC,NULL);
MSDN says: The following example calls the HH_DISPLAY_TOPIC command to open the help file named Help.chm and display its default topic in the help window named
Mainwin
. Generally, the help window specified in this command is a standard HTML Help Viewer. MSDN ExampleHWND hwnd =
HtmlHelp(
GetDesktopWindow(),
"c:\\Help.chm::/Intro.htm>Mainwin",
HH_DISPLAY_TOPIC,
NULL) ;