Collection of unedited thoughts and bits of knowledge I can't seem to remember
Search This Blog
Thursday, December 24, 2009
Changing Table Layout panel control dynamically at runtime
Change Column span and Row Span for a control in a tablelayoutpanel at runtime...
TableLayoutPanel1.SetRowSpan(TextBox1, 2)
TableLayoutPanel1.SetColumnSpan(TextBox1, 2)
Change Column and row position of a control in a tablelayoutpanel at runtime...TableLayoutPanel1.SetColumnSpan(TextBox1, 2)
TableLayoutPanel1.SetRow(TextBox1, 2)
TableLayoutPanel1.SetColumn(TextBox1, 2)
TableLayoutPanel1.SetColumn(TextBox1, 2)
Subscribe to:
Posts (Atom)