Page 1 of 1

DataBand / condition / DataTable

Posted: Mon May 10, 2010 8:46 am
by Coyote
Hello,

i use a Report with two DataBands.

DataBand1 (MasterDataband), Data Source: DataTable1
DataBand2, Data Source: DataTable2

A Textbox with a condition is placed on DataBand2.
If the condition is true a value from DateTable2 is displayed on the Textbox.
If the condition is false an empty row is displayed. This happens for every row in DataTable2.

So the result looks like:


value1
value2

value3
value4
value5

value6


The result i expected is:

value1
value2
value3
value4
value5
value6

How can I solve the problem?

Thanks!

DataBand / condition / DataTable

Posted: Mon May 10, 2010 11:48 am
by Jan
Hello,

Please set CanShrink property to true for DataBand and for textbox.

Thank you.

DataBand / condition / DataTable

Posted: Tue May 11, 2010 1:04 am
by Coyote
It works! :biggrin:

Thank you

DataBand / condition / DataTable

Posted: Tue May 11, 2010 1:22 am
by Andrew
Great!

Thank you.