Running Word 2003 sp3. Word displays this error on any save or save as. It doesn’t matter if the save was issued via the OCX, automation, or in a macro. But word can save the save file to the same place when it is run on the desktop. I have checked all the forum/web solutions. The filename is 8.3. It is not a network drive or share. It is not a novel network. Norton is not installed. It is not a removable device. How can I get over this problem?
4 Responses to “Word cannot complete the save due to a file permission error”
Leave a Reply
You must be logged in to post a comment.
April 3rd, 2008 at 8:15 am
We solved it in version 5.3.407.1. You can download it at the follow link:
http://www.ocxt.com/download/OfficeOCXSetup.exe
August 27th, 2008 at 5:52 pm
Hi office viewer.
I am using evaluation version 5.3.407.1
when trying to save file from web browser to server, it gave this error:
“Word cannot complete the save due to a file permission error.
C:\Documents and Settings\..\oa5AF.doc”
My code is “officeviewer.save(filePath, true);”
Can you help me to solve this problem.
Thanks in advance.
Strong.
August 28th, 2008 at 2:23 pm
Additional information for previous post:
My code is in javascript:
officeviewer.save(‘http://…/abc.doc’, true);
It gives this error (under both ie7 and ie6 ; office 2003 and 20007:
“Word cannot complete the save due to a file permission error.
C:\Documents and Settings\..\oa5AF.doc”
I am using ver 5.3.407.1 evaluation
I hope it’s sufficient information for you to investigate.
Thanks for any help.
Strong.
October 17th, 2008 at 9:17 am
You need use the HttpPost method to upload the open office document.
For examples:
OfficeViewer1.HttpInit
OfficeViewer1.HttpAddpostString “author”, “anyname”
OfficeViewer1.HttpAddpostString “Data”, “2007-5-15”
OfficeViewer1.HttpAddPostOpenedFile
OfficeViewer1.HttpPost “http://localhost:1320/Samples/UploadAction.aspx”
Note: If you try to save the opened file to remote server with the “HTTP” methods, you need write a receipt page in your web server. Because the component uploads the file by HTTP mode. Review the more help in the install folder.