Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Combining two Word documents - How?
Message
 
À
29/01/2002 13:36:29
Information générale
Forum:
Visual FoxPro
Catégorie:
COM/DCOM et OLE Automation
Divers
Thread ID:
00612320
Message ID:
00612339
Vues:
26
This message has been marked as the solution to the initial question of the thread.
Try this:
*---------------------
lcfile1="c:\encrypting.doc"
lcfile2="c:\If Operating Systems were beers.doc"
wdStory=6
wdSectionBreakNextPage=2

oWord = CREATEOBJECT("word.application")
with oWord
.Documents.open(lcfile1)
.Selection.EndKey(wdStory)
.Selection.InsertBreak(wdSectionBreakNextPage)
.Selection.InsertFile(lcfile2,"", .f.,.f.,.f.)
endwith

Best Wishes


>How can I take Word document(a) and Word document (b) and put the contents of (B) at the end of the contents of (a) ?
>
>Document (b) has a different header to that in document (a), therefore, there needs to be a section break at the bottom of document (a) and document (b) is then in the new section observing its own header/footer.
>
>I tried to use the subdocuments collection of document (a) and the addfromfile method but, despite following all of the steps, no joy. I kept getting an OLE dispatch error that said the object was a table ? (the two documents are littered with Word tables)
>
>I need to do this and I am struggling for ideas. Any help much appreciated.
>
>Best
>
>-Gary
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform