![]() |
|
#6
|
||||
|
||||
|
My original reply was couched in the terms I expressed it because of the many posts I've seen where people are confused about the SQL prompt that appears when a mailmerge document is opened. It gets called all sorts of things - including an error message.
I believe the appearance of the mailmerge task pane in the 'don't show all windows in the taskbar' mode is by design. If it really bother you, you could add the following sub to your 'normal' template's 'ThisDocument' module: Code:
Private Sub Document_Open()
With ActiveWindow
'Ignore any errors
On Error Resume Next
'Reduce flickering while changing settings
.Visible = False
'Hide the mailmerge task pane
CommandBars("Mail Merge Panes").Visible = False
'Restore the window now that we're finished
.Visible = True
End With
End Sub
__________________
Cheers, Paul Edstein [Fmr MS MVP - Word] |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Mail merge, DDE conection, Word 2000 vs 2007 | Avatar | Mail Merge | 0 | 11-12-2009 07:44 AM |
| Word 2007 Mail Merge Problem | flambe99 | Mail Merge | 2 | 04-20-2009 11:58 AM |
Word 2007 Mail Merge
|
halfempty | Mail Merge | 1 | 03-03-2009 07:45 PM |
| Word 2007 mail merge problem | Katyone | Mail Merge | 0 | 05-13-2008 04:46 AM |
Mail Merge 2007 Limitation
|
Butch Jackman | Mail Merge | 3 | 07-23-2007 09:44 AM |