.NET Word Reports

$ 119.99

.NET Word Reports by Kellerman Software allows you to create Word files without having Word installed. There is no dependency on Word at all. Easily create reports by performing a simple search and replace on Word documents. Word Reports has intelligent formatting defaults. The defaults can be overridden. Everything can be done in memory with input and output streams. It is simple to insert images and tables into word documents. Word Reports has powerful functionality at a price everyone can afford.

While it can be purchased separately, this product is also included in the Gold Suite. Gold Suite subscribers receive all product updates and all new products as part of a yearly subscription. It is the best value in the industry.

Features

Feature Description
Easy to Use Create Word files with a single line of code. The help file contains code examples for all methods and properties.
Robust With other Word tools, you have to manually handle all the formatting in code. .NET Word Reports allows you to format your Word document exactly the way you want it before doing a search and replace.
Intelligent Formatting All simple .NET types have default formatting which can be overridden. There is special handling for null, booleans, dates, and decimal.
100% Managed Code 100% managed code written in C#.
Royalty Free Distribution Include with any .NET project royalty free.
1 Year Free Upgrades Purchase today and all upgrades are free for the next year.
60 Day Money Back Guarantee At Kellerman Software, we want you to be totally satisfied with your purchase. Receive a refund within 60 days when ordering from KellermanSoftware.com. Source code versions are non-refundable due to their nature.
Lifetime Support Lifetime E-mail technical support is included.

There are currently no commercial or shareware competitors that perform simple search and replace in word documents. If you find one, please contact us at and we will be happy to create a standard comparison chart like we have done with the rest of our products.

Download a free 30 day trial today.

  • Full working version
  • Includes technical support
  • Works with .NET 2.0 and higher

Download Options

Word Reports requires the following system configuration.

  • Windows XP with SP2, Windows Vista, Windows 7, Windows 8, Windows 10, Windows 11, Windows Server 2003, Windows Server 2008, Windows Server 2012, or Windows Server 2016
  • .NET Framework 3.5, 4.0, 4.5, 4.5.1, or 4.6

//To run this example code, create a word document called ExampleTemplate.docx with the text [ReplaceMe] in the document

WordReportsGenerator generator = new WordReportsGenerator(); //Trial Mode

//WordReportsGenerator generator = new WordReportsGenerator("place user name here", "place license key here"); //License Mode

const string sourceDocumentPath = @"Test Documents\ExampleTemplate.docx";

const string outputDocumentPath = "ExampleOutput.docx";

Dictionary<string, ReplacementItem> replacement = new Dictionary<string, ReplacementItem> { { "[ReplaceMe]", new ReplacementItem { Value = "This is a test" } } };

generator.GenerateWordReport(sourceDocumentPath, outputDocumentPath, replacement);

Q: How do I use my license key?
A: WordReportsGenerator generator = new WordReportsGenerator("place user name here", "place license key here");

Q: I lost my license key how do I retrieve it?
A: Go to your account

Q: I lost my software how do I retrieve it?
A: Go to downloads

Q: Where can I download the latest version of my software?
A: Click the download tab.

Q: How does the licensing work?
A: Each developer that uses Word Reports must have a license. You may distribute your application to end users royalty free. A site license is for all the developers in a single building.

Q: What happens when the trial expires?
A: An exception is thrown, indicating that the trial is expired.

Date Version Description
8/12/2013 1.0 Initial release.
11/29/2014 1.01 New build for .NET Framework 4.5 and 4.5.1.
2/24/2016 1.07 Builds for .NET Framework 4.5.2 and 4.6. The library remains 100% managed code but is now compatible with COM.
10/22/2016 1.10 Conflict with DOCX has been resolved.
10/22/2016 1.11 Broken hyper links have been corrected in the help file.
9/14/2019 1.13 Builds for .NET Framework 4.7, 4.7.1, 4.7.2, and 4.8.
12/1/2022 2.00 Now compatible with .NET Core, .NET Standard, Mono, Xamarin iOS, Xamarin Mac, Xamarin Android, UWP, Unity, .NET 5, and .NET 6.
12/26/2023 2.12 Fix for replacing in tables with .NET Standard and .NET Core.