AC wrote:

I have three Objects; 2 HBoxes which are populated with children at
runtime, and a DataGrid. At runtime, I am trying to create a parent
control (VBox) which contains all three of these controls.

Create the three as children of the VBox.

hbox1 = vbox.createChild(HBox, "");
hbox2 = vbox.createChild(HBox, "");
datagrid1 = vbox.createChild(DataGrid, "");

If you have already created the three controls, I don't think you can change their parents (so you can't add them to the VBox, AFAIK).

Manish




Reply via email to