Does anyone know why pressing Ctrl+Enter (with the focus on the combobox)
automatically selects the first item in the combo beginning with the letter J?
Surely this has to be a bug in the combobox. The problem can be reproduced
by simply creating a new Windows Application, adding a new combobox onto
Form1, setting it's style to DropdownList and pasting the following code into
Form_Load:
ComboBox1.Items.Add("Motorbike")
ComboBox1.Items.Add("Car")
ComboBox1.Items.Add("Jeep")
ComboBox1.Items.Add("Van")
ComboBox1.Items.Add("Tank")
ComboBox1.SelectedIndex = 0
Whichever item you have selected, pressing Ctrl+Enter causes Jeep to become
selected. I'm using Visual Studio 2005 Professional (VB) on Windows 2000
Professional, but I've reproduced this on VB6 and Visual Studio .NET 2003
(VB) as well.
Thanks in advance for any help.
Colin