![]() |
Platforms, Frameworks & Libraries »
.NET Framework »
Utilities
Intermediate
License: The Code Project Open License (CPOL)
A New .NET Reporting WayBy Fabio ZanettaLooking for a free and simple way to design and add reports to your .NET application? Take a look at MyNeoReport library. |
C#, VB, Windows, .NET, Visual Studio, Dev
|
|
Advanced Search Add to IE Search |
|
|
|
||||||||||||||||
About three years ago, I started developing in .NET using a famous free editor and I needed to add some reports to my applications. Since I like to see what I'm going to print, just not to waste half a forest in paper only to adjust that text font, I started developing a little reporting library and a designer that uses it. By the way, my initial work was included into that famous free .NET editor, but I abandoned that project because I saw that it was badly designed (this is the doom of most first drafts), so it became a brand new project: MyNeoReport engine and designer, that let me design reports in a WYSIWYG way and, if I want, I now have total control on each the report objects from my application.
Today, if you are an hobbyist you have also some Microsoft® free solutions to develop your application, but these entry level IDEs still don't have built-in reporting tools (and I also dislike the one included in professional ones). There isn't a free (good and working) solution out there that lets you manage printing in an easy way in managed code, so I decided to begin MyNeoReport and now, after three years, it is quite mature (ok, there are no hyper-advanced features, but boy... it is simple to use, well-organized and free).
In this article, I'll describe some code that you can use for managing the report content in your application. Note that you can access the report at runtime or you can define the report in the designer. Note that the full designer covers almost all the capabilities of the engine, and if you want, you can write your own designer (maybe better than mine).
The preview of the sample report is shown below:
The engine is composed of two libraries:
These libraries must be distributed with your application, but you need to reference only NeoDataType.MyNeoReport.dll, since the other is just for support. The main namespace you need to include is NeoDataType.MyNeoReport:
// c#
using NeoDataType.MyNeoReport;
' vb.net
Imports NeoDataType.MyNeoReport
Here you can find all the report entity classes. The most important ones are:
Report, of course, the most important Page, that defines the page characteristics Section, that identifies a section (report and page headers and footers, details and groups) Label, Image, Shape, DataLabel, Dataimage, that are the base items that you can printReport identifies the report document, it allows you to load and save a report to disk, it gives you some information such as how many pages the report will print, but, more important, it exposes the Page property.
Page describes the page size, orientation, measure unit, and, of course, the sections to be printed.
Section is a horizontal band that contains the items to be printed. Default sections are ReportHeader, PageHeader, Details, PageFooter, ReporFooter, but MyNeoReport also supports grouping sections.
In summary, the structure of a report is as follows:
Report
+- Page
+- Sections
+-Items
// c#
private void CreateANewReportSample()
{
// Create a new report
Report report = new Report();
// Now you can set Page properties
Page page = report.Page;
// Set the page width to 5x8 inches
page.Units = ScaleMode.Inches;
page.Width = 5;
page.Height = 8;
// Add some items to print
// - add a label that indicates the page number
Label label = page.ReportHeader.AddLabel();
// This label uses special functions as described here:
// http://www.devbox4.net/?q=node/34
label.Text = "Page {@PageNumber} of {@PageCount}";
// - add an ellipse shape rotated by 20 degrees
// This is another way to create and add an item
Shape shape = new Shape();
shape.ShapeType = ShapeType.Ellipse;
shape.Angle = 20;
page.ReportHeader.AddItem(shape);
// If you use the PageControl to add designer capability
// to your application, you need to assign the Page object
// to it
pageControl.SetPage(report.Page);
}
// c#
private void SetDetailsDataSource()
{
// Default datasource is OleDbDataSource that lets you connect to OleDb providers.
// You can choose to pass data to a datasource changing it to a TableDataSource
// with section.ChangeDatasourceType(DataSourceType.UseDataTable)
OleDbDataSource dataSource = (OleDbDataSource)report.Page.Details.DataSource;
dataSource.ConnectionString = myConnectionString;
// Add a label and a data label bounded to the data
// to the details section
// - add a label that indicate the record number
Label label = page.ReportHeader.AddLabel();
// This label uses special functions as described here:
// http://www.devbox4.net/?q=node/34
label.Text = "Product {@RecordNumber} of {@RecordCount}";
// - add a data label that indicates product name
DataLabel datalabel = page.Details.AddDataLabel();
// Move the data label to the right
datalabel.X = label.X + label.Width;
datalabel.DataField = "ProductName";
// - add a data label that indicates product price
datalabel2 = page.Details.AddDataLabel();
// Move the data label to the right
datalabel2.X = datalabel.X + datalabel.Width;
datalabel2.DataField = "UnitPrice";
// Set the text in case the data is NULL
datalabel2.NullText = "Price undefined";
// Set the format of the data, according to MSDN
// for the format strings
datalabel2.Format = "#,###.00";
// You can call the standard connection string wizard
// using dataSource.ShowConnectionStringWizard();
}
// c#
private void ShowThePreview()
{
// Ok, now that you set all the report properties and items
// you can preview and print it!
// First of all, you need to choose the destination printer.
// This is needed also for the preview, so it can be appropriate.
report.ShowPrinterDialog();
// Show the preview in a separate window.
// Note that you can use the NeoDataType.MyNeoReport.PreviewControl
// if you want a preview in your form.
report.ShowPreview();
// You can also print the report directly with
// report.Print();
}
I like MyNeoReport because its classes let you create a report (data bounded or not) without a designer, but just via your code because the classes give you total control over each aspect of the report and its components.
If you think that the built in items (Label, Image, Shape, DataLabel, DataImage) are too few, you must know that MyNeis extensible: you can write your own item by just inheriting from oReport NeoDataType.MyNeoReport.ItemBase. You can look at the Designer code that is supplied to check all the abilities of the Report classes.
This is just a little introduction to the power of MyNeoReport library. For more information, documentation, support and newer releases, you can visit the site that supports me.
The MyNeoReport 1.4 is a big update, with some new enhancements, optimizations and bug fixes. This is described in the file upgradeinfo.txt contained in the download package.
General
News
Question
Answer
Joke
Rant
Admin
|
PermaLink |
Privacy |
Terms of Use
Last Updated: 29 Sep 2007 Editor: Deeksha Shenoy |
Copyright 2006 by Fabio Zanetta Everything else Copyright © CodeProject, 1999-2009 Web21 | Advertise on the Code Project |