You can check the class type of a band to determine which band you are in. If you would only like to access objects in the detail band, try using a report object loop that checks if the band is a TppDetailBand object.
if aReport.Bands[liBand] is TppDetailBand then //loop through detail band objects.
Comments
You can check the class type of a band to determine which band you are in.
If you would only like to access objects in the detail band, try using a
report object loop that checks if the band is a TppDetailBand object.
if aReport.Bands[liBand] is TppDetailBand then
//loop through detail band objects.
--
Regards,
Nico Cizik
Digital Metaphors
http://www.digital-metaphors.com
Nico Cizik
Digital Metaphors
http://www.digital-metaphors.com
Thanks Nico