Hello;
I am developping a C# application and I would like integrate a Help.chm fille in my application.
my question : how to call Help.chm fille from my C# application.
Thank you in advance;
Hello;
I am developping a C# application and I would like integrate a Help.chm fille in my application.
my question : how to call Help.chm fille from my C# application.
Thank you in advance;
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Vimal KandasamyPosted May 4, 2009, 7:36 AM
you can call using process class like below
System.Diagnostics.Process.Start(filepath);
Jerry KowalskiPosted Jul 4, 2009, 3:25 AM
Help.ShowHelp(this, "C:\MyPath\MyHelpFile.chm", HelpNavigator.TopicId, "1001");
RameshPosted Jun 17, 2009, 6:40 AM
Posted May 4, 2009, 8:54 AM
Thank you very much