Word Automation through VB is all about programmatically generating the Word Document using VB code. Working on Word is considered to be straightforward, but doing the same programmatically gets a little intricate. Word automation almost completely involves working with objects and reference types. Almost all of the tasks which we perform on word 2003 can be done programmatically using VB or C#. Tasks like Inserting Table of Contents, Linking documents, Mail Merge, Inserting Documents, Embedding documents, inserting pictures, watermark... etc can all be done programmatically.
3. Setting Up Work Environment
Starting off, the first step is to include the Word dll's to the Solution. This can be done by right clicking the Reference Folder in the Solution explorer of the project and select Add Reference.

Figure 1.
Browse Through the available COM objects and Select Microsoft Office 11.0 Object Library & Microsoft Word 11.0 Object Library. This DLL has all the methods which we do to perform the automation.
Note: This dll would be present only if Microsoft Office is installed on the Machine.
Also include "Imports Microsoft.Office" in the Namespaces used.

Figure 2.

Figure 3.
4. Objects Used in Automation
All the methods used Word automation is derived either from Word.Application or Word.Document class.
Let's consider that we want to create a document using the Word Application, we might end up doing the following steps,
- Open Word Application. (Opening Word Application creates a new document by default, but in Automation, wee need to manually add a document)
- Add a New document.
- Edit the document.
- Save it.
The same steps needs to be done programmatically. The Word.Application and Word.Document are used to Open Word and add a new Document to it.
4.1 Word.Application
This represents in Word Application without any new document loaded in it. This is like the base class which is needed to create a new document. Creating a new instance of Word.Application can be visualized as below.

Figure 4.
4.2 Word.Document
If we need to add a new document file, first we have to create an instance of the Word.Document object and then add it to the Word.Application.
'OBJECT OF MISSING "NULL VALUE"
Dim oMissing As Object = System.Reflection.Missing.Value()
'OBJECTS OF FALSE AND TRUE
Dim oTrue As Object = True
Dim oFalse As Object = False
'CREATING OBJECTS OF WORD AND DOCUMENT
Dim oWord As New Word.Application()
Dim oWordDoc As New Word.Document()
'MAKING THE APPLICATION VISIBLE
oWord.Visible = True
'ADDING A NEW DOCUMENT TO THE APPLICATION
oWordDoc = oWord.Documents.Add(oMissing, oMissing, oMissing, oMissing)
This triggers the following operation in the Word Application

Figure 5.
Approaches to Perform Automation
- We can either have a base template (.dot) file and open the base template file and work on it.
- We can otherwise build a word document from scratch.
4.3 Standard Input Parameters
Most of the methods have input parameters which are of reference type, and the values are mostly true, false or missing (null). In automation it makes sense as to why most of the input parameters are of reference types; it might be because of the fact that most of the methods a multitude of input parameters (many have more than 10 input parameters) and their value is going to be either true, false or missing in most of the cases. So instead of supplying the same input parameter ten times, we can make all the input parameters point to the location same single variable in them memory.
4.3.1 Range Object
While we work on Word Application, if we want to type some text in the 11th line, then we manually take the cursor and click it on the required line and then start typing. In order to do the same task, we use the Range variable in VB. The range variable of the Word.Document object represents the location of the cursor on the current document.
There are many possible ways to point to a specific location on a document. I had extensively used the Bookmarks locators as I work on Automation using a base template. In this approach, we insert Bookmarks on the base template and we programmatically locate those Bookmarks, set the range on them and insert text or documents at that specific location. There are also many other possible ways to set the range.
'SETTING THE RANGE ON THE BOOKMARK
Dim oBookMarkName As Object = "My_Inserted_Bookmark_On_Template"
Dim wrdRange As Word.Range = oWordDoc.Bookmarks.get_Item(oBookMarkName).Range.[Select]()
4.3.2 Selection Object
While working on word, we select a range of text by clicking and dragging the mouse pointer across contents in the document to select it. The contents can be text, formatted text, tables or any other item in the document. We programmatically represent the same by using the Selection Object derived from Word.Selection. In the previous range example, we locate a bookmark and set the range on that specific bookmark and we select it. Now the selection object represents that specific location. It's like placing the cursor on that specific bookmark location on the document. The selection across text can be done by selecting a range of text in between two ranges. Then the selected range can be copied, deleted or formatted.
4.3.3 Selecting Between Bookmarks
'BOOK MARK FOR START OF SELECTION
Dim oBookmarkStart As Object = "BookMark__Start"
Dim oRngoBookMarkStart As Object = oWordDoc.Bookmarks.get_Item(oBookmarkDesignInfoStart).Range.Start
'BOOK MARK FOR END OF SELECTION
Dim oBookmarkEnd As Object = "BookMark__End"
Dim oRngoBookMarkEnd As Object = oWordDoc.Bookmarks.get_Item(oBookmarkDesignInfoEnd).Range.Start
'SETTING THE RANGE ON THE BOOKMARK BETWEEN TWO BOOKMARKS
Dim rngBKMarkSelection As Word.Range = oWordDoc.Range(oRngoBookMarkStart, oRngoBookMarkEnd)
'SELECTING THE TEXT
rngBKMarkSelection.[Select]()
rngBKMarkSelection.Delete(oMissing, oMissing)
5. Automation using a Base Template
The base template file method is preferable as it gives us much more flexibility in performing the automation and it comes very handy for performing Mail Merge.
In the base template method, when we call the Documents.Add method of the Application object, we give the path of the .dot file.
'THE LOCATION OF THE TEMPLATE FILE ON THE MACHINE
Dim oTemplatePath As Object = "C:\Program Files\MyTemplate.dot"
'ADDING A NEW DOCUMENT FROM A TEMPLATE
oWordDoc = oWord.Documents.Add(oTemplatePath, oMissing, oMissing, oMissing)
Now .dot file is opened and when we save the generated document, we save it as a new file.
6. Mail Merge
Mail merge is a useful tool in scenarios where we want to randomly generate alike documents where just a few fields change. For instance in a pay slip which has a base template and just the employee name, number and pay details needs to change for each employee. Now we can have a base template which is a word file saved as Document Template file.
In the .dot file, insert a Mail Merge Field manually by placing the cursor in the required position and Insert -> Field, and in Field Names, select "MergeField", now the Mail merged field would be represented by <<FieldName>>. The template can be like
Contact Information
For further information and discussions, please contact:
Name: <<CIFLName>>
Address: <<CIAddress>>
Phone: <<CIPhW>> (Work)
<<CIPhM>> (Cell)
Fax: <<CIFax>>
Email: <<CIMail>>
Now for programmatically replacing the Mail Merge fields using the code, the document by default has many fields in it. But the user entered fields comes with a prefix and suffix which can be can be used as an identifier to replace the fields.
'OBJECT OF MISSING "NULL VALUE"
Dim oMissing As Object = System.Reflection.Missing.Value()
'OBJECTS OF FALSE AND TRUE
Dim oTrue As Object = True
Dim oFalse As Object = False
'CREATING OBJECTS OF WORD AND DOCUMENT
Dim oWord As New Word.Application()
Dim oWordDoc As New Word.Document()
'SETTING THE VISIBILITY TO TRUE
oWord.Visible = True
'THE LOCATION OF THE TEMPLATE FILE ON THE MACHINE
Dim oTemplatePath As Object = "C:\Program Files\MyTemplate.dot"
'ADDING A NEW DOCUMENT FROM A TEMPLATE
oWordDoc = oWord.Documents.Add(oTemplatePath, oMissing, oMissing, oMissing)
For Each myMergeField As Word.Field In oWordDoc.Fields
iTotalFields += 1
Dim rngFieldCode As Word.Range = myMergeField.Code
Dim fieldText As String = rngFieldCode.Text
' ONLY GETTING THE MAILMERGE FIELDS
If fieldText.StartsWith(" MERGEFIELD") Then
' THE TEXT COMES IN THE FORMAT OF
' MERGEFIELD MyFieldName \\* MERGEFORMAT
' THIS HAS TO BE EDITED TO GET ONLY THE FIELDNAME "MyFieldName"
Dim endMerge As Int32 = fieldText.IndexOf("\")
Dim fieldNameLength As Int32 = fieldText.Length - endMerge
Dim fieldName As String = fieldText.Substring(11, endMerge - 11)
' GIVES THE FIELDNAMES AS THE USER HAD ENTERED IN .dot FILE
fieldName = fieldName.Trim()
' **** FIELD REPLACEMENT IMPLEMENTATION GOES HERE ****//
' THE PROGRAMMER CAN HAVE HIS OWN IMPLEMENTATIONS HERE
If fieldName = "MyField" Then
myMergeField.[Select]()
oWord.Selection.TypeText("This Text Replaces the Field in the Template")
End If
End If
Next
There is one other method for replacing the Merge Fields which is mentioned in msdn, which uses a rather memory hungry approach. In that method a separate document is opened and it is inserted with a table which has first row as the Mail Merge Field Name and the second row as the replacement value, then the value from the table is matched with that of the original document and replacement occurs and the second document is purged.
7. Embedding a Document
Embedding a document is done through the application by
Insert-> Object-> Create from file-> Select the File-> Display as Icon. This embeds the file in the selected location as an icon and the user can double click on the icon to open the file. The same can be done through automation.
The range supposed to set at the required place and the same has to be selected (range can be set by any of the means mentioned above). Now with the selection, the file can be embedded.
'ICON LABEL CAN BE THE NAME OF THE FILE,
'ITS THE NAME DISPLAYED BESIDES THE EMBEDDED DOCUMENT
Dim oIconLabel As Object = "File Name"
'INCASE WE NEED THE EMBEDDED DOCUMENT TO BE DISPLAYED AS A SPECIFIC ICON,
'WE NEED TO SPECIFY THE LOCATION OF THE ICON FILE
'ELSE SET IT TO oMissing VALUE
Dim oIconFileName As Object = "C:\Document and Settings\IconFile.ico"
'THE BOOKMARK WHERE THE FILE NEEDS TO BE EMBEDDED
Dim oBookMark As Object = "My_Custom_BookMark"
'THE LOCATION OF THE FILE
Dim oFileDesignInfo As Object = "C:\Document and Settings\somefile.doc"
'OTHER VARIABLES
Dim oClassType As Object = "Word.Document.8"
Dim oTrue As Object = True
Dim oFalse As Object = False
Dim oMissing As Object = System.Reflection.Missing.Value
'METHOD TO EMBED THE DOCUMENT
oWordDoc.Bookmarks.get_Item(oBookMark).Range.InlineShapes.AddOLEObject(oClassType, oFileDesignInfo, oFalse, oTrue, oIconFileName, oMissing, oIconLabel, oMissing)
8. Inserting a Document File
Contents of a Word documents can also be inserted into the current document from the application by doing the following.
Insert -> File -> Select the File. This extracts the contents from the selected file and inserts it into the current document.
In automation, we need to follow a similar approach by placing the range at the required point and selecting it and then inserting the file.
'THE LOCATION OF THE FILE
Dim oFilePath As String = "C:\Document and Settings\somefile.doc"
oWordDoc.Bookmarks.get_Item(oBookMark).Range.InsertFile(oFilePath, oMissing, oFalse, oFalse, oFalse)
9. Including Water Marks/Pictures in the Document Background
Including watermarks is one other important feature for any official documents as the watermark may have the company's logo, draft logo or any other picture/text. This is useful when we want a picture or some text to be present throughout the document in the background.
We insert a watermark in the application by performing the following tasks.
Format -> Background -> Printed Watermarks
The same can also be done programmatically; moreover as we manually define the values like the angle of tilt and actual location of the watermark, we have more flexibility in defining the exact location of the watermark.
9.1 Embedding Pictures in Document Header
'EMBEDDING LOGOS IN THE DOCUMENT
'SETTING FOCUES ON THE PAGE HEADER TO EMBED THE WATERMARK
oWord.ActiveWindow.ActivePane.View.SeekView = Word.WdSeekView.wdSeekCurrentPageHeader
'THE LOGO IS ASSIGNED TO A SHAPE OBJECT SO THAT WE CAN USE ALL THE
'SHAPE FORMATTING OPTIONS PRESENT FOR THE SHAPE OBJECT
Dim logoCustom As Word.Shape = Nothing
'THE PATH OF THE LOGO FILE TO BE EMBEDDED IN THE HEADER
Dim logoPath As String = "C:\Document and Settings\MyLogo.jpg"
logoCustom = oWord.Selection.HeaderFooter.Shapes.AddPicture(logoPath, oFalse, oTrue, oMissing, oMissing, oMissing, oMissing, oMissing)
logoCustom.[Select](oMissing)
logoCustom.Name = "CustomLogo"
logoCustom.Left = CSng(Word.WdShapePosition.wdShapeLeft)
'SETTING FOCUES BACK TO DOCUMENT
oWord.ActiveWindow.ActivePane.View.SeekView = Word.WdSeekView.wdSeekMainDocument
9.2 Inserting Text in the Centre of the Document as Water Mark
'THE LOGO IS ASSIGNED TO A SHAPE OBJECT SO THAT WE CAN USE ALL THE
'SHAPE FORMATTING OPTIONS PRESENT FOR THE SHAPE OBJECT
Dim logoWatermark As Word.Shape = Nothing
'INCLUDING THE TEXT WATER MARK TO THE DOCUMENT
logoWatermark = oWord.Selection.HeaderFooter.Shapes.AddTextEffect(Microsoft.Office.Core.MsoPresetTextEffect.msoTextEffect1, "Enter The Text Here", "Arial", CSng(60), Microsoft.Office.Core.MsoTriState.msoTrue, Microsoft.Office.Core.MsoTriState.msoFalse, 0, 0, oMissing)
logoWatermark.[Select](oMissing)
logoWatermark.Fill.Visible = Microsoft.Office.Core.MsoTriState.msoTrue
logoWatermark.Line.Visible = Microsoft.Office.Core.MsoTriState.msoFalse
logoWatermark.Fill.Solid()
logoWatermark.Fill.ForeColor.RGB = DirectCast(Word.WdColor.wdColorGray30, Int32)
logoWatermark.RelativeHorizontalPosition = Word.WdRelativeHorizontalPosition.wdRelativeHorizontalPositionMargin
logoWatermark.RelativeVerticalPosition = Word.WdRelativeVerticalPosition.wdRelativeVerticalPositionMargin
logoWatermark.Left = CSng(Word.WdShapePosition.wdShapeCenter)
logoWatermark.Top = CSng(Word.WdShapePosition.wdShapeCenter)
logoWatermark.Height = oWord.InchesToPoints(2.4F)
logoWatermark.Width = oWord.InchesToPoints(6F)
'SETTING FOCUES BACK TO DOCUMENT
oWord.ActiveWindow.ActivePane.View.SeekView = Word.WdSeekView.wdSeekMainDocument
9.3 Inserting Text in the Centre of Page, and rotating it by 90 Degrees
'INSERTING TEXT IN THE CENTRE RIGHT, TILTED AT 90 DEGREES
Dim midRightText As Word.Shape
midRightText = oWord.Selection.HeaderFooter.Shapes.AddTextEffect(Microsoft.Office.Core.MsoPresetTextEffect.msoTextEffect1, "Text Goes Here", "Arial", CSng(10), Microsoft.Office.Core.MsoTriState.msoTrue, Microsoft.Office.Core.MsoTriState.msoFalse, _
0, 0, oMissing)
'FORMATTING THE SECURITY CLASSIFICATION TEXT
midRightText.[Select](oMissing)
midRightText.Name = "PowerPlusWaterMarkObject2"
midRightText.Fill.Visible = Microsoft.Office.Core.MsoTriState.msoTrue
midRightText.Line.Visible = Microsoft.Office.Core.MsoTriState.msoFalse
midRightText.Fill.Solid()
midRightText.Fill.ForeColor.RGB = CInt(Word.WdColor.wdColorGray375)
'MAKING THE TEXT VERTICAL & ALIGNING
midRightText.Rotation = CSng(90)
midRightText.RelativeHorizontalPosition = Word.WdRelativeHorizontalPosition.wdRelativeHorizontalPositionMargin
midRightText.RelativeVerticalPosition = Word.WdRelativeVerticalPosition.wdRelativeVerticalPositionMargin
midRightText.Top = CSng(Word.WdShapePosition.wdShapeCenter)
midRightText.Left = CSng(480)
10. Including Page Numbers in Page Footer
Including auto-generated page numbers in the Footer is yet another useful feature which can be simulated in the code.
'SETTING THE FOCUES ON THE PAGE FOOTER
oWord.ActiveWindow.ActivePane.View.SeekView = Word.WdSeekView.wdSeekCurrentPageFooter
'ENTERING A PARAGRAPH BREAK "ENTER"
oWord.Selection.TypeParagraph()
Dim docNumber As String = "1"
Dim revisionNumber As String = "0"
'INSERTING THE PAGE NUMBERS CENTRALLY ALIGNED IN THE PAGE FOOTER
oWord.Selection.Paragraphs.Alignment = Word.WdParagraphAlignment.wdAlignParagraphLeft
oWord.ActiveWindow.Selection.Font.Name = "Arial"
oWord.ActiveWindow.Selection.Font.Size = 8
oWord.ActiveWindow.Selection.TypeText("Document #: " + docNumber + " - Revision #: " + revisionNumber)
'INSERTING TAB CHARACTERS
oWord.ActiveWindow.Selection.TypeText("" & Chr(9) & "")
oWord.ActiveWindow.Selection.TypeText("" & Chr(9) & "")
oWord.ActiveWindow.Selection.TypeText("Page ")
Dim CurrentPage As Object = Word.WdFieldType.wdFieldPage
oWord.ActiveWindow.Selection.Fields.Add(oWord.Selection.Range, CurrentPage, oMissing, oMissing)
oWord.ActiveWindow.Selection.TypeText(" of ")
Dim TotalPages As Object = Word.WdFieldType.wdFieldNumPages
oWord.ActiveWindow.Selection.Fields.Add(oWord.Selection.Range, TotalPages, oMissing, oMissing)
'SETTING FOCUES BACK TO DOCUMENT
oWord.ActiveWindow.ActivePane.View.SeekView = Word.WdSeekView.wdSeekMainDocument
11. Basic Text Formatting Options
11.1 Paragraph Break
This is equivalent to hitting the enter button in the document.
'ENTERING A PARAGRAPH BREAK "ENTER"
oWord.Selection.TypeParagraph()
11.2 Text Formatting Option
All the text formatting options available in the Word Application can also be replicated through automation.
'OTHER COMMONLY USED FORMATTING OPTIONS
oWord.Selection.Font.Bold = 1
oWord.Selection.Font.Color = Word.WdColor.wdColorAqua
oWord.Selection.Font.Italic = 1
oWord.Selection.Font.Underline = Word.WdUnderline.wdUnderlineDashHeavy
11.3 Clear Formatting
When the Formatting is applied to a selection, then the same formatting gets carried on to the next lines, in order to clear the formatting, the next line needs to be selected and ClearFormatting() method needs to be called.
'CLEARING THE FORMATTING
oWord.Selection.ClearFormatting()
12. Table of Contents
Table of Contents is very handy when it comes to official documents or some technical papers which span across many pages. Table of contents can be inserted and updated on the fly as the document gets built.
For the Table of Contents to get auto generated without any hassles, it is vital that the Headings, Sub-Headings and the Body text have their respective attributes set. When we work on the application, the values get set by themselves, we only need to edit if required. But while programming its mandatory that we set the values in the code in order to prevent any anomalies when the Table of Contents gets updated.
Below is an example of a document which was programmatically generated.


Figure 6.
It is apparent that the Header 2 and Header 3 and Body are formatted differently and even in the Table of Contents the Header 2 is slightly offset from the Header 1.
Open the above document and Outlining Tool bar, View -> Toolbars -> Outlining. And on moving the cursor on the Sample Header 2, we can see that the Format is Heading 2 and Outlining level is Level 2.

Figure 7.
And for Body, the Format is Normal + Arial, 10 pt and Outlining Level is Body text.

Figure 8.
The same values needs to be set programmatically for the Table of Contents to get generated.
12.1 Section Format
For setting the Format of the Selection, select the entire text (select between bookmarks like mentioned before in Selection section) and set the value
'SETTING THE FORMAT TYPE
'SELECT THE CONTENST TO BE FORMATTED AND SET THE VALUE
Dim styleHeading2 As Object = "Heading 2"
Dim styleHeading3 As Object = "Heading 3"
oWord.Selection.Range.set_Style(styleHeading2)
oWord.Selection.Range.set_Style(styleHeading3)
12.2 Outline Level
For setting the outline level, select the contents and set it to one of the values mentioned below
'SETTING THE OUTLINE LEVEL
'SELECT THE CONTENTS WHOSE OUTLINE LEVEL NEEDS TO BE CHANGED AND
'SET THE VALUE
oWord.Selection.Paragraphs.OutlineLevel = Word.WdOutlineLevel.wdOutlineLevel2
oWord.Selection.Paragraphs.OutlineLevel = Word.WdOutlineLevel.wdOutlineLevel3
oWord.Selection.Paragraphs.OutlineLevel = Word.WdOutlineLevel.wdOutlineLevelBodyText
12.3 Inserting Table of Contents
Once the Outline Levels & Section Style are set, the Table of Contents can be inserted programmatically and the page numbers gets populated automatically based on the Outline Levels & Section Style set by the user. (Also refer this MSDN Link)
' NAME OF THE BOOKMARK IN THE DOCUMENT (.dot Template) WHERE TABLE OF
' CONTENTS NEEDS TO BE ADDED
Dim oBookmarkTOC As Object = "Bookmark_TOC"
' SETTING THE RANGE AT THE BOOKMARK
Dim rngTOC As Word.Range = oWordDoc.Bookmarks.get_Item(oBookmarkTOC).Range
' SELECTING THE SET RANGE
rngTOC.[Select]()
' INCLUDING THE TABLE OF CONTENTS
Dim oUpperHeadingLevel As Object = "1"
Dim oLowerHeadingLevel As Object = "3"
Dim oTOCTableID As Object = "TableOfContents"
oWordDoc.TablesOfContents.Add(rngTOC, oTrue, oUpperHeadingLevel, oLowerHeadingLevel, oMissing, oTOCTableID, oTrue, oTrue, oMissing, oTrue, oTrue, oTrue)
12.4 Updating Table of Contents
Usually the Table of Contents is inserted in the beginning of the document generation and once all the contents are populated, the locations of the Headings and Sub Headings tend to change. If the Table of Contents is not updated, then its contents points to different pages. To overcome this hassle, the Table of Contents needs to be updated at the end of the Automation.
'UPDATING THE TABLE OF CONTENTS
oWordDoc.TablesOfContents(1).Update()
'UPDATING THE TABLE OF CONTENTS
oWordDoc.TablesOfContents(1).UpdatePageNumbers()
13. Saving/Closing & Re-Opening the File
13.1 Saving the File
'THE LOCATION WHERE THE FILE NEEDS TO BE SAVED
Dim oSaveAsFile As Object = DirectCast("C:\SampleDoc.doc", Object)
oWordDoc.SaveAs(oSaveAsFile, oMissing, oMissing, oMissing, oMissing, oMissing, oMissing, oMissing, oMissing, oMissing, oMissing, oMissing, oMissing, oMissing, oMissing, oMissing)
13.2 Closing the File
'CLOSING THE FILE
oWordDoc.Close(oFalse, oMissing, oMissing)
'QUITTING THE APPLICATION
oWord.Quit(oMissing, oMissing, oMissing)
13.3 Re-Opening the File
The Open () method which we use in Word2003 dll might throw an exception if the client have another version of word installed in their machine. If the client has Word 2002, then he has to open a word file only by Open2002 () method. Open () method which comes for Word 2003 might through an exception in Word 2002 environment. And for Word 2000, there is a method called Open2000 () and Open2002 () for Office 2002 and so on. So it is wise to put the Open () in a try-catch block as mentioned below.

Figure 9.
14. Tips for Word Automation to Create New Document (Non-Base Template Approach)
(Refer to this MSDN link)
When we proceed to create a New Document without using the Base Template, the most useful entity is the inbuilt Bookmark endofdoc. It would be a build-from-scratch approach where the programmer starts of the automation by inserting his first section of contents, then setting the range to point to the endofdoc Bookmark and selecting it and inserting his contents and again selecting the endofdoc which would be pointing to the end of the document which would now be after the two sections.