|
Hi,
Please Help me for solve this problem.
Actually i am create ing help (.chm) files by using HelpNavigator enumrator and showhelp method. I am getting result but in help file left panel index i am not getting the content name . so plese tell me how can i get this .
My code is
private void showhelp(string currentpage)
{
HelpNavigator navigator = HelpNavigator.KeywordIndex;
string url="path";
System.Windows.Forms.Showhelp(form,url,navigator,c urrentpage);
}
From this i am getting help page in help page the Right panel I am getting search Page exactly.but in the left panel Index Box the Page name has to display but it's not displaying.
private void showhelp(string currentpage)
{
HelpNavigator navigator = HelpNavigator.Index;
string url="path";
System.Windows.Forms.Showhelp(form,url,navigator,c urrentpage);
}
From this i am Not getting search result but in the left panel of the help page index i am geting the search content exactly .
Please help me to getting both .
Advance thanx.
|