I have an VS2012 project that has a menu item called "INSTRUCTIONS".
I want to be able to open a specific location with my instructions by TopicID.
The form that this menu item is on is set to open the correct TopicID and works GREAT when I press F1
I want the user to be able to get the same instructions when they click the menu item.

This is my most recent attempt:

Code:
Private Sub INSTRUCTIONSToolStripMenuItem_Click(sender As Object, e As EventArgs) Handles INSTRUCTIONSToolStripMenuItem.Click
        Help.ShowHelp(Me, HelpFilePath, HelpNavigator.TopicId, "#50")
End Sub
Can someone assist me please?