Controlarrays

  • Thread starter Thread starter Jerry
  • Start date Start date
J

Jerry

Hi everyone,

I finally worked my way through several examples of making control arrays. I
am now able to make as many lables as I need and have them show up on a
form.

I am having trouble however, making the lables show up in a groupbox which
is on a tabcontrol which is on the form.

The lables show up on the form. How do I get them in the groupbox?

Thanks,

Jerry
 
Jerry said:
Hi everyone,

I finally worked my way through several examples of making control arrays. I
am now able to make as many lables as I need and have them show up on a
form.

I am having trouble however, making the lables show up in a groupbox which
is on a tabcontrol which is on the form.

The lables show up on the form. How do I get them in the groupbox?

Thanks,

Jerry

instead of adding the control to the form by:
me.controls.add(...)

Do:
me.GroupBox.Controls.Add(....)
 

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