how to hide the DataBand

Stimulsoft Reports.NET discussion
Post Reply
wayne7
Posts: 1
Joined: Sun Sep 04, 2011 9:50 pm

how to hide the DataBand

Post 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:
HighAley
Posts: 8430
Joined: Wed Jun 08, 2011 7:40 am
Location: Stimulsoft Office

how to hide the DataBand

Post 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.
Brainstorm
Posts: 31
Joined: Thu Feb 17, 2011 1:54 pm
Location: Cuiaba, Brazil

how to hide the DataBand

Post 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.
HighAley
Posts: 8430
Joined: Wed Jun 08, 2011 7:40 am
Location: Stimulsoft Office

how to hide the DataBand

Post 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.
Post Reply