Link to home
Start Free TrialLog in
Avatar of prosoftsolutionsinc
prosoftsolutionsinc

asked on

VB6, OLE Word Object - Saving

I'm using the following code to save my embedded OLE word object...
-------------------
   iFile = FreeFile
   Open App.Path & "\" & myDOTFile For Binary As iFile
   myOLEObject.FileNumber = iFile
   myOLEObject.SaveToFile iFile
-------------------
The above logic does NOT save back to MSWord format.  Is there anyway to bring a Word document into an OLE container, modify within the OLE container, and save back into Word format?
ASKER CERTIFIED SOLUTION
Avatar of john_price
john_price

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial