|
Group: Forum Members
Posts: 2K,
Visits: 6.6K
|
You'll need to cast the control to a combo - DirectCast(uControl.Controls("cboClients").Requery(),ComboBox).Requery()
You'd need to replace the "ComboBox" with the actual type, something like Microfour.StrataFrame.UI.Windows.Forms.Combobox.
Alternately, you could provide a property on the user control that exposes the combobox or a method that does the requery.
|