积极答复者
关于帮助文件的部署和使用

问题
答案
-
使用.NET提供的help类解决了问题,代码如下:
string helpFile = Application.StartupPath + "\\文博学费管理系统.chm";
// HelpNavigator MyNavigator = HelpNavigator.Find;
// Help.ShowHelp(this, helpFile, MyNavigator, "TableOfContents");if (!File.Exists(helpFile))
{
MessageBox.Show("帮助文件不存在 !");
}
else
{
Help.ShowHelp(this, helpFile, HelpNavigator.Find, "Find");
}
全部回复
-
使用.NET提供的help类解决了问题,代码如下:
string helpFile = Application.StartupPath + "\\文博学费管理系统.chm";
// HelpNavigator MyNavigator = HelpNavigator.Find;
// Help.ShowHelp(this, helpFile, MyNavigator, "TableOfContents");if (!File.Exists(helpFile))
{
MessageBox.Show("帮助文件不存在 !");
}
else
{
Help.ShowHelp(this, helpFile, HelpNavigator.Find, "Find");
}