chalupabatman
Member
- Joined
- Jun 3, 2014
- Messages
- 16
- Programming Experience
- Beginner
A more experienced user will probably laugh at the predicament I have gotten myself into but here goes. I am dynamically creating labels on a windows form flow layout panel. Perfect, formatting properly, lining up properly hooray! Well....now I need to dynamically create a text box that will dispaly directly after the aforementioned dynamically created labels. But with my flow layout panel it is creating the labels - then creating the text boxes so it lines up like so
My desired output is
VB.NET:
label1
label2
label3
label4
label5
textbox1
textbox2
textbox3
textbox4
textbox5
My desired output is
VB.NET:
label1 textbox1
label2 textbox2
label3 textbox3
label4 textbox4
label5 textbox5