Custom reporting engine.

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello,

I want to build a custom reporting engine in .NET. Wht are the consideration
and I need to provide the user design facilty at run time.

Thanks,
 
What is implied by "custom reporting engine"? Could u make it a little bit
clear?
Smth like MS Exception Blocks or like Windows Event or ...?

--
WBR,
Michael Nemtsev :: blog: http://spaces.live.com/laflour

"At times one remains faithful to a cause only because its opponents do not
cease to be insipid." (c) Friedrich Nietzsche
 
Hi,

Not exactly wot you mentioned. It is something to do with report generation.
I would like to create a tool that can be used to design reports, preview &
print somehting like microsoft data reporting or any other 3rd party stuff.

Thanks,,
 
Take into account that there are numbers of reports facilities - VS is
shipped with Crystal Reports engine, export data to Office, SQL Server Reports

If your just interesting to provide smth light-weigh to your app look at
this sample where Print is customized for WinForm control
http://www.codeproject.com/cs/miscctrl/printable_ListView_part1.asp

--
WBR,
Michael Nemtsev :: blog: http://spaces.live.com/laflour

"At times one remains faithful to a cause only because its opponents do not
cease to be insipid." (c) Friedrich Nietzsche
 
Hi,

But I cannot use any of the today's reporting tools. I need to create a new
one (just basic) for giving the user the ability to design their own data
reports.

Thanks,
 
Hello Ibrahim.,

You need to realise smth like "Form editor" and send it to print when it
will be ready
I recomend to google (http://groups.google.com/groups/search?hl=en&lr=&ie=UTF-8&oe=UTF-8&q=dotnet+form+editor)
especilally into microsoft.public.dotnet.framework.windowsforms.designtime
group
and look at http://divil.co.uk/net/articles/designers/hosting.asp

I> Hi,
I>
I> But I cannot use any of the today's reporting tools. I need to create
I> a new one (just basic) for giving the user the ability to design
I> their own data reports.
I>
I> Thanks,
I>
I> "Michael Nemtsev" wrote:
I>---
WBR,
Michael Nemtsev :: blog: http://spaces.live.com/laflour

"At times one remains faithful to a cause only because its opponents do not
cease to be insipid." (c) Friedrich Nietzsche
 
ActiveReports from DataDynamics has an end-user report designer. I
haven't used it at all so can't say how it is, just saying they have
it.

We use ActiveReports--they get the job done, but we're not real happy
with them (but when we did tests of several options they were the best
solution at the time).

One thing we've done in the past which made users very happy is create
an MS Access front-end to our application. Users could download the
MDB and it provided a small UI to choose what data they wanted. It
downloaded the data locally and users could write custom reports
within Access. Then with our custom UI they could update the data at
any time. Users loved it and we loved not having to write a million
reports.

Good luck.

Sam
 
Back
Top