HelpProvider - local .chm file, problems showing topic

A

aasif

Hello, need some help with "HelpProvider" in vb2005. I have made a .chm
file, and have a topic in there with TopicID called "Login". I have
tried for sometime to get (on f1) to launch the .chm file and show that
topic
The HelpNavigator enumeration is slightly confusing, I have used most
of the values in the enum alongside HelpKeyword value of "Login" but
always the topic doesnt show on f1.

Also I have searched google and the docs, they are not very helpful

Would appreciate any tips/help thankyou

Here is a screenshot that may help :

http://img309.imageshack.us/my.php?image=loginformhelp8fl.png
 
L

leonardo616

Hello, need some help with "HelpProvider" in vb2005. I have made a .chm
file, and have a topic in there with TopicID called "Login". I have
tried for sometime to get (on f1) to launch the .chm file and show that
topic
The HelpNavigator enumeration is slightly confusing, I have used most
of the values in the enum alongside HelpKeyword value of "Login" but
always the topic doesnt show on f1.

Also I have searched google and the docs, they are not very helpful

Would appreciate any tips/help thankyou

Here is a screenshot that may help :

http://img309.imageshack.us/my.php?image=loginformhelp8fl.png

You will need to make sure that the control with the HelpProvider link to
'Login' has the focus when you press F1.

And the settings for he control should be like:
Keyword - [subdir/]login.htm (ie the internal CHM path to the HTM file)
Navigator - Topic
Showhelp - True
 
L

lord.zoltar

aasif said:
Hello, need some help with "HelpProvider" in vb2005. I have made a .chm
file, and have a topic in there with TopicID called "Login". I have
tried for sometime to get (on f1) to launch the .chm file and show that
topic
The HelpNavigator enumeration is slightly confusing, I have used most
of the values in the enum alongside HelpKeyword value of "Login" but
always the topic doesnt show on f1.

Also I have searched google and the docs, they are not very helpful

Would appreciate any tips/help thankyou

Here is a screenshot that may help :

http://img309.imageshack.us/my.php?image=loginformhelp8fl.png

There is a Help class, I don't know if you've tried it:

System.Windows.Forms.Help.ShowHelp(Me, "help docs/MyHelpFile.chm")

This procedure has a couple of overloads and might do what you want.
I could never get the HelpProvider objects working the way I wanted
either, but this method works fine today. Hope it helps. ;)
 

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

Top