VB.NET Dock problem
- by Sid
Whenever I am adding New TableLayoutPanel programmatically in a Panel by setting DockStyle.Top, the last added TableLayoutPanel goes at the top most position of the Panel and the TableLayoutPanel added first comes down.
Example:
If I add like
1
2
3
4
5
It adds as
5
4
3
2
1
Please help me to fix the problem. The TableLayoutPanels should maintain the order as I am adding.
Thanx.