Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

add user manual to menu bar

Status
Not open for further replies.

Lhuffst

Programmer
Jun 23, 2003
503
US
How can you add a key [kbd]User Manual (word document )[/kbd] to an access 2016 database

Thanks
lhuffst
 
I'm confused (not unusual). What do you mean by "add a key"? Do you want to put a link to a Word document in your application?

Duane
Minnesota
Hook'D on Access
MS Access MVP 2001-2016
 
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
 
have the ability to open the word document"

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


---- Andy

There is a great need for a sarcasm font.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top