export to .doc

D

Daniel Garretty

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

Steve Schapel

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"
 
Top