Hi,

At design-time I created two frames using a control array:

- Frame1(0)
- Frame1(1)

Now I want to add a frame control to the control array at run-time using the following code:

----

' FrameNum is called as 2 (so it's a new frame)

Load Frame1(FrameNum)
Dim DayFrame As Frame
Set DayFrame = Frame1(FrameNum)

----

To make the new created frames visible I had to set the visible property to TRUE (Dayframe.Visible=TRUE).
This didn't work however. The visible property of my Dayframe object is still FALSE.
Why is my question...

Can someone help me out with this?

TIA.. Greetz Johan