RBASE 9.5(64) Latest
Problem:
Break Header / Region with NULL DBLabel value displays '-0-' and consumes
vertical space in report.
Want these NULL regions to disappear/collapse.
Background:
A Break Header contains Region with Component ID: [ ppRegionLevel4 ].
The Region contains DBLabel control: [ glCodeNUM4 ], which displays correct
data values.
The goal is to have the Region and Break Header disappear/collapse whenever
[ glCodeNUM4 ] is NULL.
To this end, the [ Before Generate Custom EEP ] for the Break Header is
coded:
IF vglCodeNUM4 IS NULL THEN
PROPERTY ppRegionLevel4 VISIBLE FALSE
ELSE
PROPERTY ppRegionLevel4 VISIBLE TRUE
ENDIF
RETURN
Report Variable [ vglCodeNUM4 ] is defined as:
2 : TEXT : H4 : vglCodeNUM4 = (glCodeNUM4)
What am I missing here?
'Preciate your assistance.
Bruce