In Word 2007, I have automated my mail merge letter using a template letter containing my mail merge fields, outlook contacts as the data source etc. and a visual basic macro.
In Word Visual Basic I use the Documents.Add method to open the template e.g.:
Documents.Add Template:=XDoc, NewTemplate:=False
where XDoc is the location of my template.
This works fine except that I am prompted twice with the Select Contacts dialog box using the Documents.Add method:
How do I stop the prompt appearing twice? TIA