Add-in: Remove Hidden Data PROBLEMS

G

greg

Hello,

Our firm has installed globally the Office 2003/XP Add-in: Remove Hidden
Data.

http://www.microsoft.com/downloads/...ed-d43e-42ca-bc7b-5446d34e5360&displaylang=en



There seems to be major problems with this.

If any 2 applications try and launch word you get an error to save
normal.dot.



For instance Outlook launches winword. If you have word as your default
mail editor.

Then we have a custom application that launches word. Here is the code.

Set oWordApp = CreateObject("Word.Application")
Set wordDocument = oWordApp.Documents.Open("c:\x.doc")
wordDocument.Save
wordDocument.Activate
wordDocument.Close False
oWordApp.Quit

If you run outlook then this code you will get a message that normal.dot is
locked and prompt to save it.

If you un-install the Add-in: Remove Hidden Data everything works fine.



Why does the add-in seem like it is trying to modify the normal.dot?

I can understand when you first install it? But why always?



Anyone else see this?

MS - do you have a fix yet for this?
 
G

greg

thanks...
I will give these a try



Jay Freedman said:
Aside from the specific shortcomings of the RHD add-in, you can try to
make your custom application more robust. The article at
http://www.word.mvps.org/faqs/interdev/ControlWordFromXL.htm shows how
to attempt first to get an existing Word object if there is one, using
GetObject, and then start a new one only if that fails. This method
may eliminate the in-use error.

--
Regards,
Jay Freedman http://aspnet2.com/mvp.ashx?JayFreedman
Microsoft Word MVP


02
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top