I'm using StimulReport 2007.1 and tried to build a report with DateTime values. My DataSet contains NULL values, so i tried to use the ConvertNulls Property of the Report in the Report Designer but it doesn't exist in the desinger anymore.
Where do i find the ConvertNulls property?
Thanks
Markus
ConvertNull Property gone
ConvertNull Property gone
This is bug of version 2007.1. Property exist, but not visible. As variant you can:
1. Get latest prereliase build of StimulReport.Net;
2. You can get data directly from datasource without converting. For example:
{Customers["Date"] == null || Customers["Date"] == DBNull.Value ? "-" : Customers.Date}
3. You can change type of column from DateTime to object. In this case you will get data in original format.
Thank you.
1. Get latest prereliase build of StimulReport.Net;
2. You can get data directly from datasource without converting. For example:
{Customers["Date"] == null || Customers["Date"] == DBNull.Value ? "-" : Customers.Date}
3. You can change type of column from DateTime to object. In this case you will get data in original format.
Thank you.
ConvertNull Property gone
Thanks for your help. Option 2 - works fine for me.
Markus
Markus