I have a Combobox with the following properties:
Me.cboAddServices.DropDownStyle =
System.Windows.Forms.ComboBoxStyle.DropDownList
Me.cboAddServices.DropDownWidth = 240
Me.cboAddServices.Location = New System.Drawing.Point(32, 16)
Me.cboAddServices.Name = "cboAddServices"
Me.cboAddServices.Size = New System.Drawing.Size(225, 21)
Me.cboAddServices.TabIndex = 60
This comboBox in placed inside a groupBox that is on a TabControl. The
comboBox control is populated through the datasource property by a dataSet
table.
I have seen many problem related to tabControls & comboBoxes but none are
like mine. My problem is that when I select a listItem in the comboBox it
reselects the first item. After a second attempt on selecting the SAME item
it highlights it. This has to be done for each listItem in order to select it.
Any ideas?