Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
968 views

Replace MergeFields in a Word 2003 document and keep style (c#)

I've been trying to create a library to replace the MergeFields on a Word 2003 document, everything works fine, except that I lose the style applied to the field when I replace it, is there a way to ...
1
vote
2answers
3k views

Position cursor at start/end of Word document

We are manipulating our Word 2007 documents from .Net using Word Interop. Mostly doing stuff with fields as in: For Each f In d.Fields f.Select() //do stuff with fields ...
0
votes
1answer
125 views

Unusual XML notations of mergefields in DOCX file.

In our document generation system we use DOCX files in which we programmatically fill out mergefields. For this I'm using the OpenXml SDK 2.0. I've been plowing through the document.xml file, in de ...
0
votes
1answer
158 views

Dynamically add mergefields in existing docx-document

Is it possible to add mergefields to an existing .docx document without using interop, only handling with open SDK from CodeBehind?
0
votes
2answers
566 views

How to fill a word document using Visual Basic / Visual C# in ASP.NET

I'm looking for options to fill a Word Document from either Visual Basic, or Visual C#. I'm currently using merge fields, and the code below to fill specific fields in a Word Document, but now I've ...
0
votes
0answers
137 views

use Word MERGEFIELDs to load data into graph

I have an excel file with multiple rows of data. The fields from each row need to be merged with a Word document template by using through MERGEFIELDS. The problem is that some of these fields need to ...
0
votes
1answer
711 views

How to replace a section in a word template with multiple fields C#

I'm creating a C# application that fills the MergeFields defined on a MS Word document with data from an external Data Source. I'm using the OpenXml SDK and everything works fine when replacing ...