G
Guest
I can get Access to open a program like Microsoft Word, but I can't get it to
open a specific file like help.doc. Is this possible
open a specific file like help.doc. Is this possible
Steve Schapel said:Curahee,
You can use a RunApp action in your Access macro. The Command Line
argumet will be something like this...
"C:\Program Files\...\Winword.exe" "C:\YourFolder\help.doc"
Steve Schapel said:Steve,
I guess you could use a query for the Word merge document's Data Source.
And then you could put a criteria in the query, which references the
current record in the form, using syntax such as...
[Forms]![NameOfYourForm]![YourID_Field]
--
Steve Schapel, Microsoft Access MVP
Steve said:Thanks. Is there a way to have it go to a specific mail merge record in the
Word document after the document is opened using this process? The record to
go to in Word will be the same record that is selected on the Access form
when the macro to open Word is selected. Thanks.