word-2003

VBA Word 2003 Dialog box

Hi, Our client enironment recently migrated from word 2000 to 2003, we use the below code in one of the templates to show the word's default insert file dialog box. Word is integrated with another third party application Hummingbird docspen. With Dialogs(wdDialogInsertFile) .Name = "q:*.*" .Show End With In old environment ...

MS Word splits words in its XML format

I have a Word 2003 document saved as a XML in WordProcessingML format. It contains few placeholders which will be dynamically replaced by an appropriate content. But, the problem is that Word seemingly randomly splits them in the separate words. For example, instead of this: <w:t>${dl.d.out.ecs_rev}</w:t> I have this: ... <w:t>${</w:...

How to read a word 2003 document without COM in csharp?

Hey all, I need to read many word docs in server. But you know,the component in .net is based on COM,it would work reliably if I use it. It is so sick.You know, in word 2007,because of the xml file,there are many ways to read. I wanna find a open source way to read word 2003,Thanks. ...