Click here to Skip to main content
15,892,298 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 405.9K   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: support@neodatatype.net
// Portions Copyright (C)   : Microsoft Corporation. All Rights Reserved.
// License                  : docs/license.txt
// ------------------------------------------------------------------------------
// File created by          : Fabio Zanetta, email: support@neodatatype.net
// ------------------------------------------------------------------------------
// Please, if you modify some parts of this file mark them as described in
// docs/modify_guidelines.txt
/////////////////////////////////////////////////////////////////////////////////

// If you want to use this class for a generic undo/redo purpose
// just remove references to MyNeoReport and replace ObjectBase with object

using System;
using System.Collections;
using System.Reflection;
using NeoDataType.MyNeoReport;

namespace MyNRDesigner
{
	
    public struct UndoAction
	{
        public ObjectBase Item;
        public ArrayList UndoValues;

        public UndoAction(ObjectBase item)
        {
            Item = item;
            UndoValues = new ArrayList();
        }

        public void Add(string propertyName, object value)
        {
            int idx = this.UndoValues.Count;
            
            UndoValue uv = new UndoValue();

            uv.PropertyName = propertyName;
            uv.Value = value;

            this.UndoValues.Add(uv);
        }

	}

}

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