export to .doc

  • Thread starter Thread starter Daniel Garretty
  • Start date Start date
D

Daniel Garretty

is there a way i can create a command in an access form
that opens a word document?
 
Daniel,

To do this with a macro, the RunApp action would be the one to use. The
Command Line argument would follow this syntax...
"C:\PathToWord\Winword.exe" "C:\PathToDoc\YourDoc.doc"
 
Back
Top