Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Automating Word
Message
De
29/03/2000 07:42:57
 
 
À
28/03/2000 15:43:31
Information générale
Forum:
Visual FoxPro
Catégorie:
COM/DCOM et OLE Automation
Titre:
Divers
Thread ID:
00351619
Message ID:
00351943
Vues:
19
What I do is store the name of the document ("C:\My Documents\MyDoc.doc" in your case) if a field ( docname C 80) and use:
.Documents.Open(mytable.docname)


Peter




>The short answer is "You don't". The long answer is......
>
>General fields are like the Roach Motel of VFP. They get in, but they don't get out. They are designed for embedded or linked OLE. Now, if you want to store documents in a table for future use by an external app through automation, look at changing the general field to a Memo(binary) field (a normal memo field with no code page trannslation). Then you can APPEND MEMO and COPY MEMO in and out of the database to a file and leverage your existing automation code.
>
>
>>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
Peter Cortiel
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform