The docs for both methods read virtually identical to me. I have a template (.DOTX) which I want to open and make changes to, saving as .DOCX. What's the right approach? And, in fact, how do I save the document? I see no Save method...
views:
66answers:
1
A:
Using the Open
method requires that the document already exists. If not, an exception is thrown.
Using the Create
method will open the document if it exists or create it if it doesn't.
When you call the Close
method, the document is saved automatically.
Neil T.
2010-09-11 22:45:16