ContainerControl with Combo Box

Hi
I have ContainerControl with Combo Box how i can add items to the Combo Box from the Windows1
My Code but no Works
this is on windows1 Open Events
Windows1. ContainerControl.ComboBox.AddRow(“Data”)

If you placed the container on the window in the IDE, then use the name that was assigned to it.

Windows1.NameOfTheContainer.NameOfTheComboBox.AddRow(“Data”)

If you added the container in code, you must keep a reference to it somewhere, such as in a property of the window.

thanks Tim
it works