Tagged Questions

For issues relating to setting up or running mail merge operations.

learn more… | top users | synonyms

4
votes
3answers
937 views

Mail Merge with Open Office from C# .NET

I need to be able to mail merge from an ASP.NET web form in C# .net to Open Office. I can connect with OpenOffice and open a file but that is where things stop at the moment. I have a table of mail ...
4
votes
6answers
18k views

How to do mail merge on top of a PDF?

I often get a PDF from our designer (built in Adobe InDesign) which is supposed to be sent out to thousands of people. I've got the list with all the people, and it's easy doing a mail merge in ...
3
votes
3answers
107 views

How dangerous is it to let users specify RazorEngine templates?

I have mail-merge like functionality, which takes a template, some business object, and produces html which is then made into PDF. I'm using RazorEngine to do the template+model to html bit. If I ...
3
votes
1answer
134 views

Delphi Word automation - print merged document

My D5 application can currently mail merge multiple members data to a Word document using: wrdapp := CreateOleObjct(word.application); wrdDoc := wrdApp.Document.Open(TemplateLocation); wrdMailMerge ...
3
votes
2answers
332 views

Compile ASPX in WinForms App

I'm writing a WinForms application that sends email messages (like a mail merge). I'd like to use ASP.Net's rendering engine to render the HTML bodies of the messages. What's the simplest way to get ...
2
votes
1answer
52 views

Document templates: JavaScript as replacement for Word?

We currently use Word for mail merge (labels) and personalized greeting cards (contact name in the text). Because our contact information is stored on a Web platform (SharePoint), I was thinking ...
2
votes
0answers
217 views

Word mail merge with Excel data

I've got a mail merge document set up in Word 2010. The data I'm using is Excel 2010. I've got some fields at the end of the data that have a lot of text in one cell (more than 255 characters). Data ...
2
votes
2answers
134 views

Parsing a string for mail merging

I am working on a C# project and let's assume I have a string containing something like this: string content = "[IF FullName = 'Bob Smith']Hello my friend"; content += "[ELSEIF TotalPurchases > ...
2
votes
1answer
323 views

Adding attachment to mail merge to email

I am trying to create a mail merge to email which also adds an attachment. I am following a procedure outlined in the article http://word.mvps.org/FAQs/MailMerge/MergeWithAttachments.html The ...
2
votes
2answers
353 views

MS Word mailmerge like functionality to allow export to Word document from ASP.Net Web application

I have requirement where I need to allow users to upload a Word document with place holders for certain fields which can be found in the database. This will be their template. For example the place ...
2
votes
1answer
234 views

Web-based document merge solution?

We are looking for a web-based document merge solution. Our application is a web-based project management tool built using Xataface - PHP on Windows IIS + mySQL. We have a function that allows the ...
2
votes
3answers
2k views

Mail Merge (Excel to Word) using C#

I was wondering if anybody knew how to do a mail merge using an Excel file as a datasource, to fill in fields on a Word template? I wish to use the interop for Word if i could...but am having a few ...
2
votes
3answers
2k views

Automating Word Mailmerge not working as expected

I'm having a problem with some mail merge code that is supposed to produce letters within our application. I'm aware that this code is a bit rough at the moment, but we're in the "Get something ...
1
vote
2answers
157 views

Convert Word Mail Merge documents from 2003 to 2010 format

I need to convert about 100 mail merge documents from 2003 to 2010 format(.doc to .docx). The trouble I am having is that in order to convert the documents I need to open them. But some of them won't ...
1
vote
2answers
84 views

Trimming white space in MS Word + Access mail merge

I am trying to do a mail merge with an Access database, but the output looks like this: Dear JOHN SMITH, Is there a way to trim the white space? I have several thousand of these and I dread ...
1
vote
1answer
152 views

Mailmerge in MSOffice 2010 vs Trial version, with Delphi

I'm attempting to make my Delphi membership application automate with word2010, by creating an oleobject instead of a form component: wrdApp := createoleobject('word.application'); opens a mail ...
1
vote
2answers
354 views

Delphi MailMerge Word2010 new page command

I am trying to update my membership software written in Delphi, to mailmerge in to Word2010. I'm using wrdApp := CreateOleObject('Word.Application'); wrdDoc := wrdApp.Documents.add(); then for ...
1
vote
2answers
1k views

How do I suppress blank lines in a Microsoft Word 2007 mail merge?

I'm setting up a mail merge file that reads from a CSV file. In the CSV file, there are ~20 Boolean fields that produce the body of the Word mail merge file. The problem is that if the first 19 ...
1
vote
0answers
187 views

Open Office mail merge - pick text colour based on field value (formulas / scripting)?

Is there a simple way (via formulas if possible rather than scripting) in Open Office text documents (.odt) to format characters via a formula based on the value of a mail-merge field? The File -> ...
1
vote
0answers
122 views

Word MailMerge Helper filtering issue

I use the MailMergeHelper to do Letters forms with an Access 2003 database as a datasource. Before running my merge I insert a query filter to merge only records where field X matches a value Y. But, ...
1
vote
1answer
1k views

Mail merge started by VBA in Access let Word open Database again

I'm working on a Access database which generates some mails with mail merge called from VBA code in the Access database. The problem is that if I open a new Word document and start the mail merge ...
1
vote
2answers
371 views

mail-merge HTML from a database into MS Word

project: Using VB.NET to build a winforms database interface and work-automation app. I am using this editor for the users to enter their text in the database interface environment that will both ...
1
vote
0answers
390 views

Using interop to do a Word mailmerge using C#

I am trying to automate a mailmerge to print mailing labels with C#. I've created a Word template containing the label layout, but when I try to use interop to set the DataSource I am having issues. ...
1
vote
0answers
104 views

Question about mail merge in DesignPro 1.0.1 for mac

I'm using Avery DesignPro v. 1.0.1 for mac to print out address labels using a mail merge. There are two columns for addresses (Address1 and Address2), but for most of the entries on the list, ...
1
vote
3answers
478 views

C# superfast “mailmerge” type replace

I hoping for some pointers on the quickest way to do a replace when the document that needs bits replacing is constant (a sort of mailmerge scenario). Of course there are lots of ways of doing ...
1
vote
1answer
862 views

retrieve MergeField values from mail-merged Word Document programmatically

I have a large collection of MSWord documents (approximately 40,000), which are the results of mailmerges (same main document, different data sources). One of the merge fields is a text field which ...
1
vote
4answers
1k views

Merge fields in Office 2007 or 2003 using C#

I want to set up a template document along the lines of this: ================ Doc content ---------------- Merge Field1 Merge Field2 Merge Field3 ---------------- More doc content ...
0
votes
0answers
26 views

insert Bullet point through mail merge in word document

I am creating pdf file using mail marge concept in MS word. Can anyone guide me to insert bullet using its character code through mail merge concept. i am creating an xml file and sending it to the ...
0
votes
0answers
39 views

How to Eliminate Duplicate Values From a MailMerge DataSource

I'm pretty new to VBA so I don't know too much. I'm trying to create a macro in word 2010 to run a mail merge but i'm having trouble because i need to find a way to eliminate duplicate values from the ...
0
votes
1answer
48 views

PHP: How should do mail merge with openoffice?

I have question about integrate Open office with PHP. I want make mail merge from PHP. Do you have any idea what should exaclly I do with this? There any options with java's calling from php?
0
votes
0answers
29 views

How to create a message in Outlook 2003 from a comma-separated list of values

I have a text file that resides on a client workstation that is of the format: tablename.fieldname, tablename.fieldname,... "value1","value2","value3",... Essentially a list of all the databasefields ...
0
votes
1answer
42 views

Word MailMerge functions replication using VSTO

everybody this is actually a continuation of a previous thread that i have closed due to the non-relation matter over there. Previously in my VSTO adventures (had a tv show voice going on ...
0
votes
0answers
77 views

How to split word mail merge document?

How to split word mail merge document? When i am trying to use the plugin at (http://www.gmayor.com/individual_merge_letters.htm) i am getting the following error message on opening MS word: ...
0
votes
0answers
66 views

OpenXML | IF CONDITION handling in word mail merge

In one of my projects, we need to use word mail merge feature behind a web service. Since COM approach is not recommended at server side and it is only supported in a single thread (we need to ...
0
votes
2answers
109 views

Send email via outlook with mail merge using Java

I have a set of contacts in my database. I want my application to build a custom email template for my clients. My client can set a custom placeholders such as company name, address: For example: ...
0
votes
1answer
54 views

word 2010 conditional blocks

I'm creating a word document using mailmerge in word 2010 and I've got a table I need to show depending on whether a certain mergefield has a value or not. I've found a way to hide/show a line of ...
0
votes
1answer
29 views

Is there a way to get a reference to results after creating word documents using mail merge?

I'm using a VSTO 2010 AddIn to do a Word mail merge with WdMailMergeDestination being set to wdSendToNewDocument. Is there any way to get a reference to the newly created documents or even find out ...
0
votes
1answer
86 views

Mail merge or merge-like functionality from C#

I need to print a few thousand stickers with a few text fields (name, position, etc) as well as a barcode image. Each staff member gets two unique stickers, and the sticker paper has 4 per sheet so ...
0
votes
1answer
90 views

Can I use MailMerge and MS Words as Report Generator instead of Access Report?

This is not about coding question. It's about Software (Database) Design. Background: My office has a ADP database as front and SQL Server is a backend. There are a dozen of basic standard ...
0
votes
0answers
124 views

VTiger: Mail Merge Problem - “vtiger CRM cannot download template”

I'm getting this error when trying to mail merge - "vtiger CRM cannot download template". According to some of the other posts, there could be an issue with the CHMOD settings (the folder ...
0
votes
0answers
40 views

How to use mail merge to create an unknown numbers of rows in a table in Word?

I want to use the Mail Merge feature in Word to create a table of data that I do not know how many rows will be in it every time I preview results in it ,I want it to look like this : Column1Name ...
0
votes
1answer
126 views

Mail merge functionality not working in later version of MS Word

We are using PowerBuilder 11.5. Mail merge was working correctly with MS Word 2005. After we switched to Word 2007, mail merge is no longer inserting fields. How can we fix this?
0
votes
1answer
87 views

Insert dynamic date field in mail merge

This seems like a basic question but I can't seem to figure out how to do it. I want to insert a "date" field into my mail merged letter at the top. I can't find any field for date in Word 2007. I ...
0
votes
0answers
228 views

Mail merge/template documents in Silverlight or just C# .NET

I’m having some problems finding a good solution for making document templates with merge fields and master/detail sections in my Silverlight application. A typical document would be: Name of ...
0
votes
1answer
222 views

Auto mail merge using Automator, Filemaker, Word and Mail

I am using a mac and.. I want to know if it is possible to set up some automator scripts that search a filemaker database for contacts who match a certain criteria and then Save these contacts in a ...
0
votes
1answer
342 views

MS Word 2010 mailmerge in Delphi 5

could anyone help? I've inherited some software written in Delphi 5 which allows member data and fields from a database (.ADT file) to be used merged in to word. It works fine with all version of ...
0
votes
1answer
21 views

Who is the current user

I am using the Mail Merge feature of Navision and would like to be able to add the name of the user who is invoking the mail merge. If this information is stored in a Navision table, I can call it out ...
0
votes
1answer
44 views

Is there a way for end users to use the current filter set in Access as the datasource for a Word mailmerge?

One of our products is an Access database which includes a table listing thousands of addresses. Our product includes a user friendly interface for searching and filtering out the addresses. These are ...
0
votes
0answers
48 views

Lazy-loaded Word mail merge?

We're currently providing Word with a CSV file of records using the Interop assembly. This works, but scales poorly (not to mention the inherent special character issues). I'd like to move to an ...
0
votes
1answer
540 views

Help with Mail Merge IF field and VBA please

HI I have a very simple mail merge that is connected to an SQL server database The mail merge has two fields on it, one is {MERGEFIELD Dealer_Name} the other is the following IF field {IF ...

1 2