Arthur Fuller
artful at rogers.com
Wed Jul 13 07:00:00 CDT 2005
Thanks! That works just great. Now, one more question. I want to paste the contents of the second file into a known location (bookmark) in the first file. I have no problem going to the bookmark but I am not sure how to programmatically grab the contents of file 2 and plonk it into file 1. Any ideas gratefully accepted! Arthur -----Original Message----- From: dba-tech-bounces at databaseadvisors.com [mailto:dba-tech-bounces at databaseadvisors.com] On Behalf Of Bryan Carbonnell Sent: July 12, 2005 12:05 PM To: Discussion of Hardware and Software issues Subject: Re: [dba-Tech] Yet another Word question On 12/07/05, Arthur Fuller <artful at rogers.com> wrote: > Assuming that Word is already opened programmatically from Access, with a > document open, I now want to open two more files in Word. How might I do > that. Would it simply be... > > objWord.Documents.Add .... plus the name of the file, and the same again > with the name of the other file. Nope. Add is for creating new docs based on templates. Use objWord.Documents.Open "c:\full\path\to\your.doc"