OPening a Word File From and Access Macro

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am trying to open a word document using the macro
facility on Access. I have tried EVERYTHING suggested on
the Help function and i have had no luck, please could you
tell me how i could solve this problem.
Thanx
 
Try in a macro

Action: RunApp

Command Line:
Application location "file location"

Example
c:\program files\microsoft office\office\winword.exe "c:\my
documents\test1.mdb"

Jim
 
The best way is to use code and the simplest is the Applicatio
FollowHyperlink method. In the OnClick event of a button put th
following code...

Code
 
Back
Top