How can I access db.pas related stuff?
How can I access db.pas related stuff from my report?
So basically, I want to check a db field for null values:
if(MasterData1.DataSet.GetFieldByName("Field1").IsNull())
{
//...
}
Thanks,
Vasile
So basically, I want to check a db field for null values:
if(MasterData1.DataSet.GetFieldByName("Field1").IsNull())
{
//...
}
Thanks,
Vasile
Comments
also to check for null report component property convert nulls must be set to false
or you must check for the underlying datatype ie '' or numeric value.