Search This Blog

Thursday, December 24, 2009

The Cure - Tegan and Sara



Lyrics | Tegan and Sara Lyrics | The Cure Lyrics

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.SetRow(TextBox1, 2)
TableLayoutPanel1.SetColumn(TextBox1, 2)