Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Automating Word
Message
De
28/03/2000 15:39:34
 
 
À
Tous
Information générale
Forum:
Visual FoxPro
Catégorie:
COM/DCOM et OLE Automation
Titre:
Automating Word
Divers
Thread ID:
00351619
Message ID:
00351619
Vues:
67
I have a table that has a general field called Docs for example. In this general field I have embedded a Word 97 document. Currently I have learned how to print a document using the following code:

range = "999"
from = "1"
to = "999"
oword = CreateObject("Word.Application")
WITH oword
.Documents.Open("C:\My Documents\MyDoc.doc")
.ActiveDocument.PrintOut(0,0,range,"",from,to)
.Quit
ENDWITH

My question is: How do I replace "C:\My Documents\MyDoc.doc" with the contents of my general field? I basically don't know how to reference the Word document that resides in my general field in order to print it.

Thanks A Lot!
Tom Welch
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform