G
Guest
I have a windows application that has been developed in VB.NET 2003. As part
of this application I have included a help (chm) file that can be called from
the main application menu, or using F1 on one of the data entry screens.
I am having a small issue in navigating within the help file when calling it
from F1. Here is an example of the code I have implemented:
Private help As New HelpProvider
help.HelpNamespace = Application.StartupPath & "\HelpFileName.chm"
help.SetHelpKeyword(Me, "PageName.htm")
help.SetHelpNavigator(Me, HelpNavigator.Topic)
When I click F1 from a data entry screen, the help file is loaded and the
correct page is displayed. The problem I have is that the Contents page is
still show the first icon and does not navidate to the correct page marker.
Therefore the user cannot see the location of the displayed page in the
contents panel.
Is there any way of getting the contents page to also navigate to the page
name for the specific page that is being displayed so the user can see where
they are.
Thanks
Jason
of this application I have included a help (chm) file that can be called from
the main application menu, or using F1 on one of the data entry screens.
I am having a small issue in navigating within the help file when calling it
from F1. Here is an example of the code I have implemented:
Private help As New HelpProvider
help.HelpNamespace = Application.StartupPath & "\HelpFileName.chm"
help.SetHelpKeyword(Me, "PageName.htm")
help.SetHelpNavigator(Me, HelpNavigator.Topic)
When I click F1 from a data entry screen, the help file is loaded and the
correct page is displayed. The problem I have is that the Contents page is
still show the first icon and does not navidate to the correct page marker.
Therefore the user cannot see the location of the displayed page in the
contents panel.
Is there any way of getting the contents page to also navigate to the page
name for the specific page that is being displayed so the user can see where
they are.
Thanks
Jason