views:

128

answers:

2

Hi all,

I need to create a dynamic report.

The report needs to allow:

Before the report generation * add unknown number of images with text note.

After the report generation: * remove image by right click. * edit the text note by clicking on it.

Somebody knows about some report for C# that has those options?

thanks, Ofir

+1  A: 

There's no report in C# which has these options. You will have to write something yourself if you want these features. As far as report generation goes, reporting services (or simply the reportviewer control) is a great way to create a report and format it.

The reportviewer control requires you to provide a datasource which (like most databound controls) can be a list. If you write the code (asp .net or winforms) to populate a list with image urls and text notes, it is straightforward to use this list as a dataset in conjunction with the reportviewer control.

I can provide more details if this sounds like its an option for you

Martin Booth
A: 

I use reporting tool wich can make such dynamic reports. You can give posibility to edit prepared report to enduser as well as make events "by click" kill pictures in prepared reports. FastReport.Net.

Merl