Hello there



I try to get the mailmerge letter opened by a Command Button.
Its works fine but the only problem is that it opens initially the Document with another name (Letters1) and the mailmerge toolbar is not functioning. After I close it the right name apperars and I can manipulate the documents with the mailemerge toolbar.

How can I get rid of the first document that it opens initially.

The code I use is:

Dim Ws_Name As String
Dim objWord As Word.Document
Ws_Name = "Memo random"
Set objWord = GetObject(Application.CurrentProject.Path & "\" & Ws_Name & ".doc", "Word.Document")
objWord.Application.Visible = True
objWord.MailMerge.Execute

Thanks