2010-11-05 28 views

回答

5

試試這個

string fbPath = Application.StartupPath; 
string fname = "help.chm"; 
string filename = fbPath + @"\" + fname; 
FileInfo fi = new FileInfo(filename); 
if (fi.Exists) 
{ 
Help.ShowHelp(this, filename, HelpNavigator.Find, ""); 
} 
else 
{ 
MessageBox.Show("Help file Is in Progress.. ",MessageBoxButtons.OK, MessageBoxIcon.Information); 

}