[x]
Posted via EE Mobile

Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again.

03/09/2006 at 09:39AM PST, ID: 21767403
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

9.6

Automating an MS Word Mail Merge using C#

Asked by Philluminati in Miscellaneous Programming

Tags: merge, word, mail


Below is a sniper of code from an application I'm writing in C#. I have added the Microsoft Office Word 11.0 Object Library and the TEMPLATE_FILENAME constant has a valid filename. However the code hangs on the statement



           //Open Microsoft Word
            Microsoft.Office.Interop.Word.ApplicationClass wordapp = new Microsoft.Office.Interop.Word.ApplicationClass();
            wordapp.Visible = false;

            object filename = TEMPLATE_FILENAME;
            object objTrue = true;
            object objFalse = false;
            object objMiss = Type.Missing;
            Microsoft.Office.Interop.Word.Document myMergeDocument;

            myMergeDocument = wordapp.Documents.Open(ref filename, ref objMiss, ref objMiss, ref objMiss, ref objMiss, ref objMiss, ref objMiss, ref objMiss, ref objMiss, ref objMiss, ref objMiss, ref objMiss, ref objMiss, ref objMiss, ref objMiss, ref objMiss);
            myMergeDocument.Select();

           
            //Microsoft.Office.Interop.Word.MailMerge mailMerge = myMergeDocument.MailMerge;

            // ON THE LINE BELOW: "COMException was unhandled." and "requested object is not available"
            myMergeDocument.MailMerge.Destination = Microsoft.Office.Interop.Word.WdMailMergeDestination.wdSendToNewDocument;
            myMergeDocument.MailMerge.SuppressBlankLines = true;
            myMergeDocument.MailMerge.DataSource.FirstRecord = (int)Microsoft.Office.Interop.Word.WdMailMergeDefaultRecord.wdDefaultFirstRecord;
            myMergeDocument.MailMerge.DataSource.LastRecord = (int)Microsoft.Office.Interop.Word.WdMailMergeDefaultRecord.wdDefaultLastRecord;
            myMergeDocument.MailMerge.Execute(ref objFalse);
            //myMergeDocument.Close();
                       
            wordapp.Visible = true;
            wordapp.ShowMe();
            return;


--------------

I have a word document that is set up with a mail merge source already and I just want to make it open and perform the merge. The merge source is a text file. The Open command doesn't seem to work correctly because the mail merge toolbar is disabled. Someone please help!!!


(I know how to use try catch blocks - i'm interested in fixing the problem...not just handling it gracely)
Related Solutions: Clarify file types
[+][-]03/10/06 02:11 AM, ID: 16153175

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 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]04/01/06 10:43 AM, ID: 16351083

View this solution now by starting your 30-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: Miscellaneous Programming
Tags: merge, word, mail
Sign Up Now!
Solution Provided By: EE_AutoDeleter
Participating Experts: 1
Solution Grade: A
 
 
 
Loading Advertisement...
20091111-EE-VQP-91