Page 1 of 1
ConvertNull Property gone
Posted: Tue May 22, 2007 9:12 am
by Markus Weiß
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
Posted: Tue May 22, 2007 11:21 am
by Vital
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.
ConvertNull Property gone
Posted: Thu May 24, 2007 3:09 am
by Markus Weiß
Thanks for your help. Option 2 - works fine for me.
Markus