Thanks wscheiman for ur response
the code below is what i have so far
but i can only change one instance of FullName.
I tried using captions so I can have the same caption in multiple places in the
word doc, but caption was not recognized
It would be much easier to do it in
vb, but I was instructed not to.
I WOULD APPRECIATE ANY SUGESTIONS OR ADVICE
Set objword = CreateObject("word.application")
With objword
.Visible = False
.Documents.Open ("c:\maps\lkms\Template.doc")
End With
With objword
.activedocument.Bookmarks("FullName").Select
.Selection.Text = rstTextBlock.Fields(1).Value
'.activedocument.Caption("FullName").Select
'.Selection.Text = rstTextBlock.Fields(1).Value
End With