Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Automating Word
Message
From
28/03/2000 15:39:34
 
 
To
All
General information
Forum:
Visual FoxPro
Category:
COM/DCOM and OLE Automation
Title:
Automating Word
Miscellaneous
Thread ID:
00351619
Message ID:
00351619
Views:
62
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
Next
Reply
Map
View

Click here to load this message in the networking platform