How to create help in VB.Net?

Showing Answers 1 - 5 of 5 Answers

Create the html file and add help contents to it.

Then use the following in vb.Net Help.ShowHelp().

This showhelp method has the overloads one of it is URL. Give the path of URL u created and it will show the help.

  Was this answer useful?  Yes

Create a help file as html or word file,and place it in ur project folder.

Take a hidden control from toolbox,drag it to form.

 it will now display on the form.

this write a code on a menu_click or on button_click

**************************************

helpprovider1.setshowhelp(control_name,true)

helpprovider1.helpnamespace="Path"

*************************************

control may be a textbox.

Path:path at which the file is saved.   

 

 

  Was this answer useful?  Yes

sanjay

  • Feb 6th, 2007
 

Hi All
Just use HTML help workshop for.
Step 1 - Assign the location of project, index, content of page.
Step 2 - Create the html page and assign the keywords.
Step 3 - Comile the project and its create .chm file on assiging postion.
Step 4 - Drag the F1 help provider tool from the control list.
Step 5 - Add the chm file with the help provider property.
Step 6 - True the property of form show help provider.

Regards
Sanjay

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions