We are working on a project that generates a report using ActiveReports 2(COM for VB6), the data is coming from an ADO Recordset that we created manually(we are using a MultiValue Database that doesn't return Recordsets).
If I set the data field is a date, and I set Recordset type to adDate and have null or blank value, it returns "12:00 am" in ActiveReports. If the field has data, it displays correctly. I even exported the record set to excel, and it worked correctly.
Has anyone seen ActiveReport have this problem before?
No experience with AR2 but I do have extensive experience with the sharpgrid control from the same company.
I would try setting the value to EMPTY
oCtrl.value = Emptyor blank stringoCtrl.value = ""oroCtrl.value = Null. You may need to set these values after the data from the recordset has been loaded.