How to Join Files While Saving Master Report

Hi Mario,
Is it possible to join a .docx file while saving a document?
So in other words, before we save the master report we would like to add/join a document to the master report during the saving process.

This URL works great: Join or Combine Word files in C# and VB.NET
However, works only when the documents are already created. Were trying to to add a document during the saving process.

Hi Raymond,

Yes, using that approach, you can add any DocumentModel object to another.

For example:

DocumentModel destination = ...
DocumentModel source = ...
destination.Content.End.InsertRange(source.Content);

Regards,
Mario