Group: StrataFrame Developers
Posts: 3K,
Visits: 2.5K
|
Most likely, it's either the order in which you're adding the user control to the form or the ParentContainer property on the user control. So, what you need to do is add the user control before the OnLoad (Load event) of the form and when you create and add the user control, set the ParentContainer property on the user control to the form. Then, when the Load event fires on the form, the combo box will know to populate itself.
|