I just cant seem to figure this out and I am not sure why but is there any way to open a word document then cycle threw all the bookmarks. Change the bookmarks then print the document and close the document without saving the changes to the bookmarks?

I am trying it with the follwing code but get errors.
VB Code:
  1. Dim oWord As New Word.Application
  2.     Dim i As Integer
  3.    
  4.     oWord.Documents.Open App.Path & "\Name.doc"
  5.     With oWord.ActiveDocument
  6.         For i = 1 To .Bookmarks.Count
  7.             Select Case .Bookmarks(i)
  8.                 Case "Name"
  9.                     .Bookmarks(i).Select
  10.                     Selection.Text = "Hello"
  11.                case "..."
  12.                ect..
  13.             End Select
  14.         Next i
  15.     End With
  16.     oWord.Documents.Close