HTMLHelp Newbie ?

  • Thread starter Thread starter Michael Rich
  • Start date Start date
M

Michael Rich

I want to show a specific HTML Help topic when the user presses a button,
but I can't find any documentation on how to call HTML Help from vb.net
except using the HelpProvider component which is control-specific.

Any suggestions?

Thanks;
Michael
 
Hi Michael,

Sorry I didn't see this earlier:

Here's how, using the intrinsic help object:
Help.ShowHelp(Me, "c:\program files\semcorp_help.chm", "engineering.htm")

HTH,

Bernie Yaeger
 
Back
Top