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
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.