Accessing child controls in a Dialog sub-window

win.ods (14.9 KB)

I’ve embedded a child window in a Dialog and added a listbox control to it.
so this created window can serve as a container of a group of controls.
The idea is to create several such containers in my Dialog
Now what i wanted to know is - how to access the children of those containers ?
a Dialog’s child control can be accessed by “dialog.getControl(‘name’)”
similarly i need to refer to these newly created containers and their controls at run time.
is there a way to be able to reference these containers and their children without having to store them in an array or something ?
i couldn’t find anything that can be assigned here like a name ,id etc for all these newly created objects.