How to display runtime calculation as a Report.

  • Thread starter Thread starter Amit
  • Start date Start date
A

Amit

Hello Gurus,

I am very new to .net .
My application is calculating values on run time ,and after all the
calculation , i want to print all calculation as a report to show it
to user.

please advise how to achieve this .

this is very urgent .

any help , suggestion ,example will be highly appreciated.

Thanks
Amit
 
Amit said:
Hello Gurus,

I am very new to .net .
My application is calculating values on run time ,and after all the
calculation , i want to print all calculation as a report to show it
to user.

please advise how to achieve this .

this is very urgent .

any help , suggestion ,example will be highly appreciated.

Thanks
Amit

Hello, Amit.
I think you'll need to provide a bit more detail before you get useful
answers.
What calculations? What data are the calculations based on and where/how is
the data stored?
The reporting part of your requirement will depend, partially on which
version and Edition of Visual Studio you are using and how your results will
be stored, so please provide version and edition information as well.
 
Amit said:
Hello Gurus,

I am very new to .net .
My application is calculating values on run time ,and after all the
calculation , i want to print all calculation as a report to show it
to user.

please advise how to achieve this .

this is very urgent .

any help , suggestion ,example will be highly appreciated.

Thanks
Amit
One of the best friends I have had over the years to produce good, "on the
fly" reports, is a grid. I use TrueDBGrid by ComponentOne and it does print
preview, export to various file formats etc. I am sure many other grids do
the same.
Having said that, if you just want to show a list of numbers, what's wring
with a simple list box?
 
Back
Top