Controlarrays

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Jerry

    #1

    Controlarrays

    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


  • Chris

    #2
    Re: Controlarrays

    Jerry wrote:[color=blue]
    > 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
    >
    >[/color]

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

    Do:
    me.GroupBox.Con trols.Add(....)

    Comment

    Working...