Trouble with TableLayoutPanel

  • Thread starter Thread starter David S. Zuza
  • Start date Start date
I want to add a lable at a specific cell in table layout Panel how?

This would add a label named "MyLabel" to the cell located at column3,
row2. Assumes MyLabel exists as a control on a form or has been
created dynamically at runtime.

TableLayoutPanel.Controls.Add(MyLabel, 3,2)

Gene
 
Back
Top