Page 1 of 1

how to hide the DataBand

Posted: Sun Sep 04, 2011 10:09 pm
by wayne7
hi, i'm new and fresh on stimulsoft report, i wish to generate a report which hide all the data in dataBand, but i don't want to disable it.
any working idea?

appreciate yours reply:blush:

how to hide the DataBand

Posted: Mon Sep 05, 2011 6:17 am
by HighAley
Hello.
wayne7 wrote:hi, i'm new and fresh on stimulsoft report, i wish to generate a report which hide all the data in dataBand, but i don't want to disable it.
any working idea?

appreciate yours reply:blush:
Please, try to set the Enabled property to false in Designer or by code:

Code: Select all

dataBand.Enabled = false;
Thank you.

how to hide the DataBand

Posted: Mon Sep 05, 2011 6:32 am
by Brainstorm
Wont the Enabled property also cause it to get disabled? He said he didnt want to disable it.

The way i found out to hide it completely and still keep the values from it was by reducing the height to 0. Yep, drag the bottom all the way til it touches the top or edit it manually on the propertes.

how to hide the DataBand

Posted: Tue Sep 06, 2011 4:19 am
by HighAley
Hello.
Brainstorm wrote:Wont the Enabled property also cause it to get disabled? He said he didnt want to disable it.

The way i found out to hide it completely and still keep the values from it was by reducing the height to 0. Yep, drag the bottom all the way til it touches the top or edit it manually on the propertes.
First time I didn't exactly understand the matter. Variant with null height is right in this case.

Thank you.