and I want to write in some places
I know to open the word
and write in to the word
to write in to word:
but how am I write in a special place?
thanks alot, and sorry on my english
I know to open the word
and write in to the word
to write in to word:
Code:
Dim objWord As Word.Application
Set objWord = CreateObject("Word.Application")
objWord.Visible = False 'True is visible
objWord.Documents.Add ("C:\Documents\Test.dot")
objWord.ActiveDocument.Bookmarks("bmCusDetails").Select
objWord.Selection.Text = Forms![a]![b]
objWord.Visible = True
thanks alot, and sorry on my english