Click here to Skip to main content
15,896,606 members
Articles / Programming Languages / C#

Advanced Report Viewer

Rate me:
Please Sign up or sign in to vote.
4.79/5 (32 votes)
10 Apr 2009CPOL6 min read 500.5K   13.9K   164  
The article shows how to extend ReportViewer control that comes with Visual Studio 2008. The most important extension is adding export to Microsoft Word
namespace AdvancedReportViewer.Domain
{
    public class Person
    {
        public string FirstName { get; set; }
        public string LastName { get; set; }
        public int Age { get; set; }
    }
}

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
Russian Federation Russian Federation
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions