Click here to Skip to main content
6,594,432 members and growing! (16,025 online)
Email Password   helpLost your password?
Platforms, Frameworks & Libraries » .NET Framework » Utilities     Intermediate License: The Code Project Open License (CPOL)

A New .NET Reporting Way

By Fabio Zanetta

Looking 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
Posted:14 Aug 2006
Updated:29 Sep 2007
Views:89,966
Bookmarked:173 times
Announcements
Loading...
 
Search    
Advanced Search
Add to IE Search
printPrint   add Share
      Discuss Discuss   Broken Article?Report  
28 votes for this article.
Popularity: 6.30 Rating: 4.35 out of 5
1 vote, 3.7%
1
1 vote, 3.7%
2
2 votes, 7.4%
3
3 votes, 11.1%
4
20 votes, 74.1%
5
Sample Image - myneoreport_designer.jpg

Introduction

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.

Background

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).

Using the Code

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:

Preview

The engine is composed of two libraries:

  1. NeoDataType.MyNeoReport.dll - The core of all
  2. NeoDataType.LiveCodeEngine.dll - The engine for scripting feature

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:

  1. Report, of course, the most important
  2. Page, that defines the page characteristics
  3. Section, that identifies a section (report and page headers and footers, details and groups)
  4. Label, Image, Shape, DataLabel, Dataimage, that are the base items that you can print

Report 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

Create a New Report and Add 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);
}

Define the Details Data Source

// 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();

}

Show the Preview and Print

// 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();
    
}

Points of Interest

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 MyNeoReport is extensible: you can write your own item by just inheriting from 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.

History

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.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Fabio Zanetta


Member

Occupation: Web Developer
Location: Italy Italy

Other popular .NET Framework articles:

Article Top
You must Sign In to use this message board.
FAQ FAQ 
 
Noise Tolerance  Layout  Per page   
 Msgs 1 to 25 of 80 (Total in Forum: 80) (Refresh)FirstPrevNext
GeneralWill someone continue this project? Pinmemberelmoe010123:56 25 Aug '09  
QuestionWeb page doesn't exists? PinmemberMember 458183714:02 6 Mar '09  
GeneralPassing a parameter Pinmemberdocbiz11:38 5 Oct '08  
GeneralPrint PinmemberMember 31133768:45 8 Sep '08  
GeneralClass DataSource Pinmemberrecepkutuk8:01 13 Aug '08  
QuestionIs this project still active [modified] Pinmembercmdrcody5:42 24 Jul '08  
AnswerRe: Is this project still active Pinmembergoltra9:21 18 Sep '08  
QuestionUp to date dll [modified] Pinmemberjohn kininjjew23:58 16 Jul '08  
GeneralReport Samples PinmemberMember 197760310:31 19 Jun '08  
Generalsome example for before print code in objects? Pinmemberwlnaim20:13 29 May '08  
GeneralCount Function Pinmemberpablleaf4:19 9 May '08  
Generaldatasources PinmemberRoberto_Rwk21:50 5 Apr '08  
QuestionHow can I switch the scriptTextbox from C# to VB? [modified] PinmemberMBCDC11:00 26 Mar '08  
GeneralRe: How can I switch the scriptTextbox from C# to VB? Pinmemberkithe20:52 21 Apr '08  
GeneralHow can I print all data? PinmemberFruhstuck15:39 25 Mar '08  
GeneralNQuery Pinmemberkianoosh soorani3:09 10 Nov '07  
GeneralBeforePrintCode skip for the last record. PinmemberMOISJWang11:03 6 Nov '07  
GeneralShowPreview as virtual method Pinmemberdorwin7:39 1 Oct '07  
GeneralRightToLeft Have problem Pinmemberkianoosh soorani23:44 29 Sep '07  
GeneralExport To Word Needed Pinmemberkianoosh soorani3:29 26 Sep '07  
GeneralRe: Export To Word Needed PinmemberFabio Zanetta4:28 26 Sep '07  
GeneralAdd Export to (*.pdf) ,.. Pinmemberkianoosh soorani16:20 26 Sep '07  
GeneralRe: Add Export to (*.pdf) ,.. PinmemberFabio Zanetta8:32 29 Sep '07  
Generalparameter [modified] Pinmemberkianoosh soorani23:59 21 Sep '07  
GeneralRe: parameter PinmemberFabio Zanetta1:34 22 Sep '07  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin 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
Web19 | Advertise on the Code Project