Add MS Help workshop file to windows project question

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi

I have created an MS Help Workshop Helpfile for a windows project.
At the moment, I have placed a copy of that help file "_Help.chm" in the Bin
Dir of my project and reference it via the following code.
///
Dim p As New Process
p.StartInfo.UseShellExecute = True
p.StartInfo.FileName = Application.StartupPath() + "\_Help.chm"
p.Start()
\\\
My Question: If there a more compact or efficient way to add/use this in my
project?

Thanks

BrianDH
 
BrianDH said:
I have created an MS Help Workshop Helpfile for a windows project.
At the moment, I have placed a copy of that help file "_Help.chm" in the
Bin
Dir of my project and reference it via the following code.
///
Dim p As New Process
p.StartInfo.UseShellExecute = True
p.StartInfo.FileName = Application.StartupPath() + "\_Help.chm"
p.Start()
\\\
My Question: If there a more compact or efficient way to add/use this in
my
project?

Take a look at the HelpProvider component (available in the toolbox).
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top