VB.NET Dock problem
Posted
by Sid
on Stack Overflow
See other posts from Stack Overflow
or by Sid
Published on 2010-06-08T08:25:35Z
Indexed on
2010/06/08
8:32 UTC
Read the original article
Hit count: 330
vb.net
|visual-studio-2008
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.
© Stack Overflow or respective owner