在程序中调用帮助文件中的单页
private void miHelp_Click(object sender, System.EventArgs e){
try
{
Help.ShowHelp(this,"Help.chm",HelpNavigator.Topic,"/帮助系统/操作指南/维护系统/条码维护/条码维护.htm");
}
catch( System.Exception E)
{
MessageBox.Show(E.Message+"帮助文件损坏!","错误",MessageBoxButtons.OK,MessageBoxIcon.Error);
}
}
现在有Help.chm这个帮助,我想在程序中调用它里面的单页,这样写对不.
帮忙!!谢谢 !