Page 1 of 1

how make panel in center after docking

Posted: Sat Feb 21, 2015 8:07 am
by nezarabd
i have report with panel
the panel in center and have many textbox with dock style right
the textboxes have condition to disable on empty
it works okay
but the problem is i want to make the panel in center after disable some textbox

Re: how make panel in center after docking

Posted: Mon Feb 23, 2015 8:33 am
by HighAley
Hello.

Please, send us your report template with sample data and screen-shot that will help us to understand the issue.

Thank you.

Re: how make panel in center after docking

Posted: Mon Feb 23, 2015 8:40 pm
by nezarabd
the panel in center
when i disable the colume2
the panel not become in the center
how can i make it the center again

thanks

Re: how make panel in center after docking

Posted: Tue Feb 24, 2015 7:52 am
by HighAley
Hello.

You could specify the necessary position of the Panel at the Before Print event.

Code: Select all

if (!Text2.Enabled)
    Panel2.Left = 7;
Thank you.