|
-
December 31st, 2002, 01:27 AM
#1
HTML Help
The method used in VisualC++6.0 can not be used in VisualC++.NET. Who can give me a sample?
-
January 21st, 2003, 11:35 AM
#2
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
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|