I have just created a new application using Visual Studio 2022 & created a new CHM file which has been added. For some reason when I compile this app I am getting the above error... can someone please point me in the direction of the problem? I have added what I thought were the correct changes..
ReadOnly strHelpPath As String = Path.Combine(Application.StartupPath, “Software.chm”)
HelpProvider.HelpNamespace = strHelpPath
Private Sub HelpContentsToolStripMenuItem_Click(sender As Object, e As EventArgs) Handles HelpContentsToolStripMenuItem.Click
Help.ShowHelp(Me, HelpProvider.HelpNamespace, HelpNavigator.TableOfContents)
End Sub
ReadOnly strHelpPath As String = Path.Combine(Application.StartupPath, “Software.chm”)
HelpProvider.HelpNamespace = strHelpPath
Private Sub HelpContentsToolStripMenuItem_Click(sender As Object, e As EventArgs) Handles HelpContentsToolStripMenuItem.Click
Help.ShowHelp(Me, HelpProvider.HelpNamespace, HelpNavigator.TableOfContents)
End Sub