Launching a HTML help file

FuneralofSmiles

Newcomer
Joined
Oct 7, 2003
Messages
8
Location
South Carolina
Hello,

I am working on a small comic book database for a friend of mine and I built an HTML help file that I want to be able to launch from a menu item. Can anyone help me which how to do so? Also, when I do this, will it use the default browser or am I going to have to specifiy a specific brower?

Thanks for all your help and happy holidays,
funeralofsmiles
 
If you simply wish to start a normal HTML file then look into the Prcoess class and its Start method.
Visual Basic:
System.Diagnostics.Process.Start("filename")
If it is a compiled HTML Help file, look into Help Provider control, it will help you with manipulating HTML help files.
 
Back
Top