Thank's for it !
Another one.
I have a report with a group header
In this group header I have a label and a table.
This label need to be printed only on first page.
I've done that using label's PrintOnPage where if PageIndex > 0 then e.Cancel = true
Now I need on this pages to acomodate the GroupHeader height and to move that table to be printed in place of that label (upper because in place of the label it's empty space)
I've tried xrTable1.Location = new Point(0,40) and GroupHeader1.Height = GroupHeader.Height - 150 but it's not working.
How can I do this ?