The method used in VisualC++6.0 can not be used in VisualC++.NET. Who can give me a sample?
Printable View
The method used in VisualC++6.0 can not be used in VisualC++.NET. Who can give me a sample?
I believe this is what you mean. I hope it helps. Basically you just have to ensure you use HtmlHelp from the current namespace such as:
CString szPath("Helpfile.chm::/Welcome.htm");
if( ::HtmlHelp(this->m_hWnd, szPath, H_DISPLAY_TOPIC,0) == NULL)
::HtmlHelp(this->m_hWnd, szPath, HH_HELP_FINDER, 0 );
zebbedi