I want to add a style to a Combobox at runtime like this:
Dim cbo as DevComponents.DotNetBar.Controls.ComboBoxEx
cbo = new DevComponents.DotNetBar.Controls.ComboBoxEx
With cbo
.Style=eDotNetBarStyle.Windows7
.width=200px
End With
ctl.Add(cbo)
But it does not work. The Style is the normal Windows-Controls Style. Can anyone help please?