What technology should I use for a complex report?
Posted
by
SeaDrive
on Stack Overflow
See other posts from Stack Overflow
or by SeaDrive
Published on 2010-12-28T16:52:03Z
Indexed on
2011/01/03
17:54 UTC
Read the original article
Hit count: 198
I have a task to generate reports from a Visual Studio C# application. This is a replacement (caused by new requirements) for a program written using the built-in implementation of Crystal Reports. Although workable, it was far from ideal. The reports have conditional content (If type=1, print this, if type=2 print that.) Crystal does not adjust spacing dynamically and the various pieces were not the same length making for some unprofessional-looking spacing.
I had thought of generating the reports in HTML, which would be feasible, but I'm concerned that you lose a degree of control, and I may be asked, e.g. to "move this up a bit" or similar which may be tricky.
I'm not either a Crystal guru or an HTML guru.
What other reporting technologies are available that would make it easy to drop in parts of different sizes, do table layouts, etc.?
© Stack Overflow or respective owner