Showing posts with label Microsoft Word 2007. Show all posts
Showing posts with label Microsoft Word 2007. Show all posts

Dec 15, 2011

Creating Custom Properties in Word 2007

In the previous article, I have explained about creating custom properties in word 2003. In this article, we will see how to create custom properties in word 2007. It is slightly different from word 2003 and involves the following steps. 1. Open the Microsoft Word 2007 and create a new word document. 2....

Creating Custom properties in Word 2003

In the articles Part I,Part II and Part III we have discussed about how to read the custom properties of word 2003 using  DSO dll in C# .Net. In this article we are going to see about creating a bookmark and set the custom properties for the Microsoft Word 2003. Steps 1. Open...

Dec 11, 2011

Reading Custom Properties of Word Document

Part III Read the Introduction about this article Part I Read about reading the summary properties of word document in this article Part II In this post, we can see what is the code for the reading the custom properties of the word document. public static void GetDocumentCustomProperties(string filename) { OleDocumentPropertiesClass doc = new OleDocumentPropertiesClass(); ...

Reading Summary Properties of Word Document

Part II Read the Introduction about this article Part I In this post, we can see what is the code for the reading the summary properties of the word document. public static void GetDocumentSummaryProperties(string filename) { DSOFile.OleDocumentPropertiesClass doc = new DSOFile. OleDocumentPropertiesClass(); doc.Open(filename, false, DSOFile.dsoFileOpenOptions.dsoOptionOpenReadOnlyIfNoWriteAccess...

Reading Document Properties

Part I We are going to discuss about a interesting topic which can be used in SharePoint and also in .Net. It is possible to reading the summary properties and custom properties of the word document and it is also one of the requirements now a days. This can be done through using DSO dll which can be downloaded from the below link DSO Setup Download Link (Important Note: This is a...