Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
95
UltraFlowLayoutManager mixing up my controls order
posted

I have 6 text boxes inside a groupbox... the UFLM changes which textbox is suppose to be in the upper left corner... is there a way to speciify which textbox shows first, second, third, etc.?

capdev

  • 71886
    Offline posted

    Hello capdev,

    This could be done by calling the 'SetChildIndex' method of the 'Controls' collection like in the following code sample:

    ultraFlowLayoutManager1.ContainerControl.Controls.SetChildIndex(textBox6, 5);

    Please do not hesitate to ask if something comes up.