W
williamr
I'm trying to open word 2003 and drop in some information that I am storing
in Access. I put in the following code but it tells me it can't find
xDeveloperName. The bookmark is in the document and is named 'xname' I have
the local window open and see xDeveloperName. Can someone help me?? Thanks
in Advance
Dim objword As Word.Application
Set objword = CreateObject("Word.application")
With objword
.Visible = True
.Documents.Open ("M:\OffSiteInformation\3-LetterSamples\Test1.doc")
.ActiveDocument.Bookmarks("xName").Select
.Selection.Text = (CStr(Forms!frmOffsiteRelease!xDeveloperName))
End With
in Access. I put in the following code but it tells me it can't find
xDeveloperName. The bookmark is in the document and is named 'xname' I have
the local window open and see xDeveloperName. Can someone help me?? Thanks
in Advance
Dim objword As Word.Application
Set objword = CreateObject("Word.application")
With objword
.Visible = True
.Documents.Open ("M:\OffSiteInformation\3-LetterSamples\Test1.doc")
.ActiveDocument.Bookmarks("xName").Select
.Selection.Text = (CStr(Forms!frmOffsiteRelease!xDeveloperName))
End With