How to show help ( using Topic Index ID ) in WPF dialogs from a CHM file?
Posted
by Ashish Ashu
on Stack Overflow
See other posts from Stack Overflow
or by Ashish Ashu
Published on 2010-05-18T11:36:33Z
Indexed on
2010/05/18
11:40 UTC
Read the original article
Hit count: 1301
wpf
|wpf-controls
I have a application that has several dialogs in it. In the chm file I have help related to each dialog . I defined Map#s ( the keyword to display help with) in my chm file for each dialog so that I can open the related help of the dialog.
for example :
My chm file name is Example.chm
And the ID for the dialog help are mapped in the chm file:
Dialog1.htm Dialog2.htm
I am using
System.Windows.Forms.Help.ShowHelp(null, @"C:\Example.chm", Dialog1.htm);
System.Windows.Forms.Help.ShowHelp(null, @"C:\Example.chm");
Either of the above is not working..
Please help!!
© Stack Overflow or respective owner