I've written an external help file in HMTL for use with an access 2007 database. However, I can find no way of calling the HTML file if the URL has an anchor "#" code at the end. For example, this fails:
Dim szAnchor As String
szAnchor = "Options"
szPathname = Application.CurrentProject.Path & "\Help\Help.html" & _
IIf(szAnchor <> "", "#" & szAnchor, "")
Application.FollowHyperlink szPathname
as does
szPathname = Application.CurrentProject.Path & "\Help\Help.html"
Application.FollowHyperlink szPathname, szAnchor
So do attempts to use Shell and ShellExecute.
Can somebody suggest a solution? Otherwise, I shall have to recreate the help file in another format!