hello
when not exist data for show in data band
data band not show
how to show data band every time?
thank
show data band when not exist data
show data band when not exist data
You could check if your datasource is empty and if so set the CountData property to 1 on your DataBand in the BeginRender event for your DataBand
Code: Select all
if(MyDataSource.Count <= 0)
{
DataBand1.CountData = 1;
}