Hello
How to do can let my GroupHeaderBand1's property 『New Page Before』= my cusomter variables's value in report
ex:
a variable name is 『Block』
when Block's value = true
GroupHeaderBand1's Property 『New Page Before』 = true
when false
『New Page Before』 = false
thanks
How to use customer Variables to change property?
-
- Posts: 68
- Joined: Tue Feb 09, 2010 3:16 am
- Location: Taiwan
How to use customer Variables to change property?
Hello,
You can use following code in "Before Print" events on GroupHeaderBand:
Thank you.
You can use following code in "Before Print" events on GroupHeaderBand:
Code: Select all
if (Block)
{
GroupHeaderBand1.NewPageBefore = true;
}
else
{
GroupHeaderBand1.NewPageBefore = false;
}
-
- Posts: 68
- Joined: Tue Feb 09, 2010 3:16 am
- Location: Taiwan
How to use customer Variables to change property?
oh...great
thanks for your help...
thanks for your help...
How to use customer Variables to change property?
Hello,
We are always glad to help you!
Thank you.
We are always glad to help you!
Thank you.