I have a template in word

24sharon

Registered User.
Local time
Today, 02:18
Joined
Oct 5, 2004
Messages
147
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:
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
but how am I write in a special place?

thanks alot, and sorry on my english
 

Attachments

sorry

in the question there is the answer

I so stupid :eek:
 

Users who are viewing this thread

Back
Top Bottom