You can find the Process class in the System.Diagnostics namespace to
achieve it.
For example,
// Start Internet Explorer. Defaults to the home page.
Process.Start("IExplore.exe");
// Start CHM help file.
Process.Start("help.chm");
Find more information about Process class on the MSDN online site.
Sincerely,
simida
Chris Saunders wrote:
> I should add that a HelpProvider doesn't seem to do what I need. I've got a
> toolbar with
> a help button and I just want to display the chm file when the button is
> clicked.
>
> Regards
> Chris Saunders
>
> "Chris Saunders" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
> > May be a dumb question but I have been unable to find the answer on my
> > own.
> > I wish to display a help file (*.chm) can anyone help?
> > I attempted using "displaying help file" as a search in MSDN but no found
> > articles seemed to have what I wanted.
> >
> > Regards
> > Chris Saunders
> >
|