Advertisement

05.28.2003 at 08:11PM PDT, ID: 20629652
[x]
Attachment Details

Access 2000 VBA mail merge problem Error 5852

Asked by vhpcomp in Microsoft Office Suite

Tags: access, vba, merge, error, mail

Using Access 2000, and Word 2000, I perform the following steps:
Export a query as a text file for mail merge.
Open a Word document.
Execute a mail merge using the Word document and the text file as the data source.
The export function seems to work OK every time.  But at least half the time the merge function fails. This happens both on my machine and on another user’s machine.  Usually the error is 5852 “Requested Object Not Available” but I also get error 462.
 
Here is part of the merge code:

Dim objWordDoc As Word.Document
         Dim WordApp As Word.Application
         Dim strTempName As String
         Dim strFileSaveName As String
         Dim strTemplateName As String      
                           
          strTemplateName = "\\myshare\myfolder\MyLetterForMailMerge.doc"
         Set objWordDoc = GetObject(strTemplateName, "Word.Document")
         objWordDoc.Application.Visible = True
         
         objWordDoc.MailMerge.OpenDataSource Name:= _
        "\\myshare\myfolder\mailmergedata.tx
        , ConfirmConversions:=False, ReadOnly:=False, LinkToSource:=True, _
        AddToRecentFiles:=False, PasswordDocument:="", PasswordTemplate:="", _
        WritePasswordDocument:="", WritePasswordTemplate:="", Revert:=False, _
        Format:=wdOpenFormatAuto, Connection:="", SQLStatement:="", SQLStatement1 _
        :=""
    With ActiveDocument.MailMerge
        .Destination = wdSendToNewDocument
        .MailAsAttachment = False
        .MailAddressFieldName = ""
        .MailSubject = ""
        .SuppressBlankLines = True
        With .DataSource
            .FirstRecord = wdDefaultFirstRecord
            .LastRecord = wdDefaultLastRecord
        End With
        .Execute Pause:=True
    End With
=================
Then there is additional code where I save the document and close the template.  This also seems to be OK.
Because the problem does not happen 100% of the time, could it be that the merge code is executing while the template doc is still busy opening?  And if so, how can I avoid that?

If this can’t be solved, I’ll give up on mail merge and instead build a new Word doc using VBA and inserting data by looping through the query recordset.  
I recall seeing documentation on this but I can’t find a thing now that I may need it, so I’ll consider giving points for a steer toward any resources that explain how this can be done.


Start Free Trial
[+][-]05.28.2003 at 10:12PM PDT, ID: 8603469

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]05.29.2003 at 06:18AM PDT, ID: 8605603

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]05.29.2003 at 07:23AM PDT, ID: 8606126

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]05.29.2003 at 07:38AM PDT, ID: 8606239

View this solution now by starting your 7-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

 

About this solution

Zone: Microsoft Office Suite
Tags: access, vba, merge, error, mail
Sign Up Now!
Solution Provided By: bruintje
Participating Experts: 1
Solution Grade: A
 
 
[+][-]05.29.2003 at 08:29PM PDT, ID: 8611062

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]05.29.2003 at 11:11PM PDT, ID: 8611642

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
 
Loading Advertisement...
20080716-EE-VQP-32