Using the Reporting RibbonTab
The Reporting RibbonTab provides all features to create out-of-the-box reporting applications.

Integrating reporting functionality into applications is a very easy task using TX Text Control. The out-of-the-box ribbon tab "Reporting" provides all required features to add merge fields, repeating blocks and special fields.
The TXText
After creating an application that uses the ribbon interface and the pre-designed ribbon tabs, your form should look similar to this:
The ribbon tab TXText
The DataSourceManager object provides methods to load data from various sources:
- LoadAssembly
- LoadDataSet
- LoadDataTable
- LoadJson
- LoadObjects
- LoadSingleObject
- LoadXmlFile
- LoadXmlString
Consider the following classes that should be used as a data source:
public class Report
{
public string Name { get; set; }
public List<Sale> Sales { get; set; } = new List<Sale>();
}
public class Sale
{
public Customer Customer { get; set; }
public Product Product { get; set; }
}
public class Product
{
public string Name { get; set; }
public decimal Price { get; set; }
}
public class Customer
{
public string Name { get; set; }
public int Id { get; set; }
public string Street { get; set; }
public string City { get; set; }
public int Zip { get; set; }
}
The following code creates a new object and loads it into the DataSourceManager using the TXText
Report report = new Report() { Name = "Test Report 2018" };
report.Sales.Add(new Sale()
{
Customer = new Customer()
{
Name = "Customer 1",
City = "Charlotte",
Id = 1,
Street = "6672 Test Street",
Zip = 27781
},
Product = new Product()
{
Name = "My Product 1",
Price = 7782.12m
}
});
DataSourceManager dsManager = ribbonReportingTab1.DataSourceManager;
dsManager.LoadSingleObject(report);
The drop-downs to insert merge fields and repeating merge blocks are filled automatically with the available values.
The DataSourceManager provides the TXText
// save the document
byte[] bDocument = null;
textControl1.Save(out bDocument, TXTextControl.BinaryStreamType.InternalUnicodeFormat);
// create the preview
IList<byte[]> bResults = ribbonReportingTab1.DataSourceManager.Merge(bDocument, 1, textControl1);
// load the preview into the Text Control
textControl1.Load(bResults[0], TXTextControl.BinaryStreamType.InternalUnicodeFormat);
Also See
This post references the following in the documentation:
TX Text Control .NET Server for ASP.NET
- TXText
Control. Document Server. Data Sources. Data Source Manager Class - TXText
Control. Document Server. Mail Merge Class
TX Text Control .NET for Windows Forms
- TXText
Control. Windows. Forms. Ribbon. Ribbon Reporting Tab Class - TXText
Control. Windows. Forms. Ribbon. Ribbon Reporting Tab. Data Source Manager Property
Reporting
The Text Control Reporting Framework combines powerful reporting features with an easy-to-use, MS Word compatible word processor. Users can create documents and templates using ordinary Microsoft Word skills. The Reporting Framework is included in all .NET based TX Text Control products including ASP.NET, Windows Forms and WPF.
Related Posts
Getting Started: Creating a .NET 8 Windows Forms Ribbon Application with…
This article shows how to create a Windows Forms application with a Ribbon and a Sidebar using TX Text Control .NET for Windows Forms. The Sidebar is a control that can be used to create a…
TX Text Control 32.0 Has Been Released
We are pleased to announce the immediate availability of TX Text Control 32.0 for all platforms including ASP.NET, Windows Forms, WPF and ActiveX.
TX Text Control 31.0 and TX Spell .NET 10.0 Have Been Released
We are happy to announce the immediate availability of TX Text Control 31.0 for all platforms including ASP.NET, Windows Forms, WPF and ActiveX and TX Spell .NET 10.0 for all .NET based platforms.
TX Text Control 30.0 and TX Spell .NET 9.0 Have Been Released
We are happy to announce the immediate availability of TX Text Control 30.0 for all platforms including ASP.NET, Windows Forms, WPF and ActiveX and TX Spell .NET 9.0 for all .NET based platforms.
TX Text Control X19 and TX Spell 8.0 Have Been Released
We are happy to announce the immediate availability of TX Text Control X19 for all platforms including Windows Forms, WPF and ASP.NET and TX Spell .NET 8 for all .NET based platforms.