Embeded container control

[quote=494085:@Anthony Cyphers]I’m not sure what you’re asking.

If you’re asking if you can store an array of ContainerControls on your window, then yes:

Private Property myContainers() as ContainerControl1

The best way to do what you want, though – as opposed to the looping method above – is probably to add a public method to your ContainerControl1 that returns the values of its children in the format you expect them to be in.[/quote]

This intrigues me a little but I’m not sure where it would take me. I would assume I could have an array of instances of container controls that could have there own stored values in preferences for each instance of the ContainerControl. Would this be correct? The instances could be called up from the array() to be displayed, cloned to be modified then cloned back to be saved. Realistic?