Click here to Skip to main content
15,886,258 members
Articles / Programming Languages / Visual Basic

A New .NET Reporting Way

Rate me:
Please Sign up or sign in to vote.
4.67/5 (50 votes)
29 Sep 2007CPOL3 min read 404.7K   17.5K   248  
Looking for a free and simple way to design and add reports to your .NET application? Take a look at MyNeoReport library.
/////////////////////////////////////////////////////////////////////////////////
// MyNeoReport Designer
// --------------------
// Project Copyright (C)    : Fabio Zanetta, email: neofz@interfree.it
// Portions Copyright (C)   : Microsoft Corporation. All Rights Reserved.
// License                  : docs/license.txt
// ------------------------------------------------------------------------------
// File created by          : Fabio Zanetta, email: neofz@interfree.it
// ------------------------------------------------------------------------------
// Please, if you modify some parts of this file mark them as described in
// docs/modify_guidelines.txt
/////////////////////////////////////////////////////////////////////////////////

using System;
using NeoDataType.MyNeoReport;

namespace MyNRDesigner.UI
{
	/// <summary>
	/// Descrizione di riepilogo per Class1.
	/// </summary>
    public class MyDataTreeNode : MyTreeNode
	{
        DataSourceBase _item;

        public MyDataTreeNode(DataSourceBase item)
            : base(item)
		{
            _item = item;
            this.Refresh();
		}

        public new DataSourceBase Item
        {
            get { return _item; }
        }
	}
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

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


Written By
Web Developer
Italy Italy
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions