Exception if Dataset is empty
Hello all,
i have a report with one PageHeader band.
Into PageHeader band exists two MemoViews.
MemoView1 contains [order."STREET"] and
MemoView2 contains [delivery."STREET"]
If the delivery dataset is empty i get an error.
How can i check empty dataset in OnBeforePrint?
regards
Kostas
i have a report with one PageHeader band.
Into PageHeader band exists two MemoViews.
MemoView1 contains [order."STREET"] and
MemoView2 contains [delivery."STREET"]
If the delivery dataset is empty i get an error.
How can i check empty dataset in OnBeforePrint?
regards
Kostas
Comments
assuming engine convert null property has not been changed
in the obp event write code to test for empty string and add text to the memoview.
if not (<delivery."STREET"> = ' ') then memo2.text:= '[delivery."STREET"]';