How to open a given Word document from within an Access Form. (Command button)

P

Pierre Archambault

Hi

How can I open a given Word document by pressing a command button in an
Access form ?

Thanks

Pierre
 
F

fredg

Hi

How can I open a given Word document by pressing a command button in an
Access form ?

Thanks

Pierre

Here is one way.
Code the command button's Clisk event:

Application.FollowHyperlink "c:\FolderName\DocumentName.doc"
 
P

Pierre Archambault

Thank you. It works fine.

Pierre


fredg said:
Here is one way.
Code the command button's Clisk event:

Application.FollowHyperlink "c:\FolderName\DocumentName.doc"
 
Top