Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
CreateNewDocument in Excel or Word
Message
From
25/08/2005 04:41:35
 
 
To
25/08/2005 03:51:34
General information
Forum:
Visual FoxPro
Category:
COM/DCOM and OLE Automation
Environment versions
Visual FoxPro:
VFP 9
OS:
Windows XP SP1
Network:
Windows 2003 Server
Database:
Visual FoxPro
Miscellaneous
Thread ID:
01043559
Message ID:
01043722
Views:
11
hi,
i use vfp8,
i try the code as it is
i get error message
Property Oword is not found


thanks.

>The same way, there is no difference what version of VFP you use.
>
>>hi,
>>how i do that via vfp8
>>thanks.
>>
>>>>I need to create a Word or Excel document from VFP.
>>>>I am trying to use "CreateNewDocument" but can't seam to get the proper writing
>>>>
>>>>Here is the code:
>>>>
>>>>*-*-*-*-*-*
>>>>oWord = CREATEOBJECT( "word.application")
>>>>lcDoc = "testword.doc"
>>>>
>>>>* I have tried
>>>>oWord.CreateNewDocument("testword.doc", .T., .T.)
>>>>* or
>>>>oWord.CreateNewDocument(lcDoc, .T., .T.)
>>>>
>>>>*-*-*-*
>>>>and quite a few different versions but I always get error messages.
>>>>
>>>>Can anyone tell me the proper way?
>>>>Thanks
>>>>Raymond Larche
>>>
>>>Raymond,
>>>Try this
>>>
thisform.oWord = CreateObject("Word.Application")
>>>
>>>*****************
>>>*** new document
>>>*****************
>>>thisform.oWord.Documents.Add()
>>>thisform.oWord.ActiveDocument.SaveAs('new_doc_name')
>>>****************
>>>*** or
>>>*** open old document
>>>****************
>>>thisform.oWord.Documents.Open('old_doc_name')
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform