J JP Feb 17, 2005 #2 Do a lookup in the Microsoft Knowledgebase on "Automation". There are a number of good articles that explain what you need to do
Do a lookup in the Microsoft Knowledgebase on "Automation". There are a number of good articles that explain what you need to do
F fredg Feb 18, 2005 #3 How would I create a command button to open a word doc. when selected? Click to expand... Do you know the name of the Word document? Application.FollowHyperlink "c:\FolderName\SomeDocName.doc" If the name of the document is in a form control: Application.FollowHyperlink "c:\FolderName\" & [ControlName]
How would I create a command button to open a word doc. when selected? Click to expand... Do you know the name of the Word document? Application.FollowHyperlink "c:\FolderName\SomeDocName.doc" If the name of the document is in a form control: Application.FollowHyperlink "c:\FolderName\" & [ControlName]