Document Merger for Dynamics CRM

This provide functionality to automatically merge two documents into single or creating new document using existing documents. Major features of this Addon are:

  • Merge two or more documents in a one.
  • Merge two or more documents in new document.
  • Provided a separate button that will trigger the Dialog automatically.

System Requirements and Supported Platforms

System Requirements

In order to install and use Aspose .NET Document Merger for Microsoft Dynamics CRM you need to have one of the following CRM version installed.

  • Microsoft Dynamics CRM 2011.

Please feel free to contact us if you find any issues in installing or using this Add-on.

Supported Platforms

This addon will work with all version of:

  • Microsoft Dynamics CRM 2011.

Downloading

You can download the latest solution at:

Installing or Uninstalling

Installing Aspose .NET Document Merger

It is simple to install Aspose .NET Document Merger. Please follow below Instructions:

  • Download the Solution File.
  • Open CRM and go to Import Solution.
  • Click Browse and select the downloaded solution file and click next.
  • Click Next and wait for the solution to import.
  • Click close when the solution is imported successfully.

Applying License

  • Copy the license File on the server and copy the path of the file.
    • Recommended: “C:\Aspose\Aspose.Total.Lic”.
  • Open CRM and Navigate to Processes.
  • Open “Aspose .NET Document Merger” and deactivate it.

todo:image_alt_text

  • Scroll Down to the “Aspose: Document Merger” Step and Click View Properties.

todo:image_alt_text

  • Add the Path of License File.

todo:image_alt_text

  • Activate the Process and Close it.

Uninstalling Aspose .NET Document Merger

  • Go to solution and select “Aspose .NET Document Merger”.
  • Press the Delete button.

Using

  • Open any contact record and click on “Document Merger” from the top ribbon.

  • Select the First and Second document to merge and select the output option.

  • Merged document will be attached to same contact record, based on the output selected.

Support, Extend and Contribute

Support

We offer free support. Anyone who uses our product, whether they have bought them or are using an evaluation, deserves our full attention and respect.

You can log any issues or suggestions related to Aspose .NET Document Merger using any of the following platforms:

Extend and Contribute

You can download the latest source code at:

Simply merge two documents here:

Document doc1 = new Document(fileStream1);
Document doc2 = new Document(fileStream2);
doc1.AppendDocument(doc2, ImportFormatMode.KeepSourceFormatting);
MemoryStream UpdateDoc = new MemoryStream();
doc1.Save(UpdateDoc, SaveFormat.Docx);