R
Richard
I have attached a help file to a form(help1.Html).
Dim hlp As New Windows.Forms.HelpProvider
hlp.SetShowHelp(Me, True)
hlp.HelpNamespace = "c:/temp/Help1.html"
On a button click I want to change the help to a new help file(Help2.Html).
Dim hlp As New Windows.Forms.HelpProvider
hlp.SetShowHelp(Me, True)
hlp.HelpNamespace = "c:/temp/Help2.html"
When I press the button and press F1, it always open help1 instead of help2.
What am I doing wrong or what am I suppose to do to make it work like this.
Thanks
RC
Dim hlp As New Windows.Forms.HelpProvider
hlp.SetShowHelp(Me, True)
hlp.HelpNamespace = "c:/temp/Help1.html"
On a button click I want to change the help to a new help file(Help2.Html).
Dim hlp As New Windows.Forms.HelpProvider
hlp.SetShowHelp(Me, True)
hlp.HelpNamespace = "c:/temp/Help2.html"
When I press the button and press F1, it always open help1 instead of help2.
What am I doing wrong or what am I suppose to do to make it work like this.
Thanks
RC