Trouble with TableLayoutPanel

  • Thread starter Thread starter David S. Zuza
  • Start date Start date
D

David S. Zuza

I want to add a lable at a specific cell in table layout Panel how?
 
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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top