I'm using CR built-in VS.NET 2002.
DataSource for reports is DataTable (DataSet) which is filled with SQL Procedure(SQL adapter).
I need my data to be with 6 decimal places accuracy.
That particular column in the DataTable is defined as decimal.
When my SQL procedure returns values with rounding of 4 decimals report works.
If I change rounding for more then 4 decimals I get error message:
System.ForamtException: Inpust string was not in a correct format. ...... etc ......etc
Code line when this is happening is:
oRpt.SetDataSource(dsTek)
where oRpt is ReportDocument
and dsTek is DataSet
Any ideas?
Thanx, Marin
DataSource for reports is DataTable (DataSet) which is filled with SQL Procedure(SQL adapter).
I need my data to be with 6 decimal places accuracy.
That particular column in the DataTable is defined as decimal.
When my SQL procedure returns values with rounding of 4 decimals report works.
If I change rounding for more then 4 decimals I get error message:
System.ForamtException: Inpust string was not in a correct format. ...... etc ......etc
Code line when this is happening is:
oRpt.SetDataSource(dsTek)
where oRpt is ReportDocument
and dsTek is DataSet
Any ideas?
Thanx, Marin