Page tree
Skip to end of metadata
Go to start of metadata
Use a repeat block to import multiple rows from a data source. A repeat block is a fragment in the template document - defined by a Word bookmark - that contains merge fields and that will be repeated for each row in a data source. To import multiple rows from a single data source, create a repeat block in the template and, in the WordWriter code, call SetRepeatBlock to bind the repeat block to a data source.

The main document is any part of the template that is not within a repeat block. SetDataSource sets a single-row data source for merge fields in the main document. If you pass SetDataSource a ResultSet that contains more than one row, WordWriter will import the first row to the template. Multiple row data sources can be imported to repeat blocks only, not to main document merge fields.

To create a repeat block:

  1. In Microsoft Word, create a text fragment, a list, or a table row that contains merge fields.
  2. Select the text, list, or table row that you want to define as a repeat block.
  3. Open the Insert menu and select Bookmark... to open the Bookmark dialog.
  4. Enter a bookmark name and click Add.

In Microsoft Word, bookmarks are not marked by default. To see which document fragments are bookmarks:

  1. Open the Tools menu and select Options...
  2. Select the View tab.
  3. Under Show, check Bookmarks. Bookmarks will be marked by grey brackets.

Whether the template will bind to one data source or several, merge fields are not required in the main document. To import multiple rows from a single data source, use a repeat block only, and do not include any merge fields in the main document. The repeat block can span all the content in the document. For example, by defining a repeat block with a bookmark that spans an entire page, and setting a multiple-row data source, you can use WordWriter to create multiple form letters:

Here is some example code that demonstrates the usage of SetRepeatBlock with a DataTable that has multiple rows. This code inserts data into merge fields "FirstName" and "LastName" enclosed in the repeat block named "BookMarkName".

Code Sample: Mail Merge using Repeat Blocks

The following code sample demonstrates the use of SetRepeatBlock to emulate mail merge behavior. The repeat block spans an entire page within the document. This causes a new page to be created for each recipient in the database:

[C# | VB.NET]

  • No labels