ConvertNull Property gone

Stimulsoft Reports.NET discussion
Post Reply
Markus Weiß

ConvertNull Property gone

Post 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
Vital
Posts: 1278
Joined: Fri Jun 09, 2006 4:04 am

ConvertNull Property gone

Post 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.
Markus Weiß

ConvertNull Property gone

Post by Markus Weiß »

Thanks for your help. Option 2 - works fine for me.

Markus
Post Reply