Me.SearchTextComboBox.DataSource = list
Me.SearchTextComboBox.DisplayMember = "LongName"
Me.SearchTextComboBox.ValueMember = "ShortName"
Me.SearchTextComboBox.ComboBoxMode = ComboBoxMode.MultiSelection
Me.SearchTextComboBox.AllowSelectAll = True
Me.SearchTextComboBox.ShowToolTip = True
Me.SearchTextComboBox.ThemeName = "Office2016Colorful"
customTextBox = New CustomHeaderUserControl(Me.SearchTextComboBox)
Me.SearchTextComboBox.TextBox.Font = New Font("Microsoft Sans Serif", 9.75f)
Me.SearchTextComboBox.DropDownListView.Style.ItemStyle.Font = New Font("Microsoft Sans Serif", 9.75f)
Me.SearchTextComboBox.DropDownListView.ShowHeader = True
Me.SearchTextComboBox.DropDownListView.HeaderHeight = 23
Me.SearchTextComboBox.DropDownListView.HeaderControl = customTextBox
Me.SearchTextComboBox.DropDownListView.AllowSelectAll = True
Me.SearchTextComboBox.MaxDropDownItems = 11
Me.SearchTextComboBox.CheckedItems.Add(list(1))
Me.SearchTextComboBox.CheckedItems.Add(list(12)) |