tags:

views:

849

answers:

4

Does anyone know a Turorial for the Reporting in c# .NET. I mean the Reports in "Microsoft.Reporting"-Namespace not the Crystal Reports.

Thanks in Advance

A: 

Have you tried Reporting Services: http://msdn.microsoft.com/en-us/library/ms170246.aspx

SaaS Developer
I will try, but I'm not using MS SQL and therefore there is no MSSQL Server with Reporting-Services
binco
You may want to take a look at SQL Server Express with Advanced Tools. It comes with the Reporting Services.
MarlonRibunal
Its probbly easier to learn client side first as you can put to use your coding skills without having to learn SQL server as you can report on any datasource with client side reports. Once you are familiar with the reporting system transitioning to SQL is much easier.
mattlant
+1  A: 

I know you probably aren't looking for links that you can find on google yourself, but these cover reporting services in great detail and should cover most of your questions.

  1. Reporting Services Tutorials
  2. Intro to reporting services
  3. Reporting Services in Action
  4. Webcasts on Reporting Services
  5. Useful reporting services links

But I'm pretty sure reporting services is tied pretty close to MS SQL, so if you aren't using it you might have to look for a different solution.

sontek
Client side reporting has absolutely no requirement for MSSQL. All you need is a datasource, an RLDC file and the report viewer control.
mattlant
The third one seems to be a good starting point...
binco
+1  A: 

There is an EXCELLENT book you can read all about client side reporting in C#:

http://www.apress.com/book/view/9781590598542

mattlant
A: 

You might have a look here at the MSDN documentation on the Namespace, it might get you started.

Mitchel Sellers