I'm using a vba code to open documents, changing the path to attached
template, and then save and close.
This is the last part of the code, with no parameters or settings:
objDoc.Save
objDoc.Close
For older files in Word6 or 95 format, word stops the code and displays a
dialogbox saying
"docname is word version6, Do you want to update? Click Yes to overwrite"
With some hundreds of docs, this is an event I would like to bypass. Anyone
with a solution on how to do that?
Ag.
Jezebel - 10 Mar 2007 21:11 GMT
Instead of using Save use SaveAs, using the same filename and specifying the
format you want to save in.
> I'm using a vba code to open documents, changing the path to attached
> template, and then save and close.
[quoted text clipped - 11 lines]
>
> Ag.