Duane,
I created a user manual that I would like to have on a tab on the menu bar.
Right now the menu bar has [pre]File, Home, create, external data ...[/pre]
I'd like to add "User Manual" and when they click that tab, have the ability to open the word document.
I looked at the Quick Access Toolbar but don't see an option to include a link to a document. My intent is to have the document stored in the same folder as the database so it is accessible for updates. Any help/suggestions are most appreciated. Thanks lhuffst
I use this Sub to open any document with its default application:
Code:
Public Sub OpenDocument(ByRef strDocPath As String)
Dim G As Long
G = Shell("RUNDLL32.EXE URL.DLL,FileProtocolHandler " & strDocPath, vbNormalFocus)
End Sub
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.