I need to open a Microsoft Word 2003 file and change its file properties. Such as changing the Subject in the Summary Tab.

|
1
|
|
|
|
|
|
Microsoft provides a very useful little assembly called DSOFile. With a reference to it in your project, you can modify Office document properties. It won't necessarily let you open the actual Office file's properties dialog, but you could certainly simulate it. According to Microsoft:
More details and a download link can be found at http://support.microsoft.com/kb/224351 Here's a snippet some (very old) VB code I used ages ago. Sorry I haven't converted to C# and be aware that it's part of a class so there are references to instance variables. Still, it should be pretty easy to understand and covert to your own needs:
|
||
|
|
|
I can think of 2 ways to do this:
I would go with the second option if you can, because that way you don't have to depend on Word being installed on the system. |
|||
|
|
