How create label array at design time?

  • Thread starter Thread starter Ronald S. Cook
  • Start date Start date
R

Ronald S. Cook

How can I create a label array at design time in a .NET Windows forms app?

Thanks,
Ron
 
Ronald S. Cook said:
How can I create a label array at design time in a .NET Windows forms app?

You can't but it is very easy to do at runtime. There are various methods
depending on what you want to do. The end result is that you would create an
array of type Label or Control and add your labels to it. You could either
create your labels in the designer or create them in the constructor.

Michael
 

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