Re: Mail Merge fails when the tablestart starts in one section and tableend in another section

Hi ,
i have the Same Problem in Dot net Application. Can you please Help me to Rectify the Issue Please.

Erroe Details :

Mail merge region ‘PayeeInfo’ is badly formed. TableStart and TableEnd should be in the same section, same table row or same table cell.

Note :
When i copy each and every Section in the Document to New Document Template its Working Fine.

Thanks,
Parthipan N

Hi Parthipan,
Following is the .NET version of the above mentioned code.

Document doc = new Document("6883464.doc");
DocumentBuilder builder = new DocumentBuilder(doc);

while (doc.Sections[1] != null)
{
    // Move cursor to last paragraph of the first section
    builder.MoveTo(doc.FirstSection.Body.LastParagraph));
    // Insert Page break
    builder.InsertBreak(BreakType.PageBreak);
    // Append content of the second section 
    doc.FirstSection.AppendContent(doc.Sections[1]);
    // Remove second section
    doc.Sections[1].Remove();
}
// Save output document
doc.Save("out.doc");

If you still see any issue, please share your input document and data to reproduce the issue.
Best Regards,