I thought about that, but I need a combobox.
What I'm trying to do is to create a dual list box, where when the user double clicks on an item in listbox1, the item selected is moved to listbox2. And visa-versa. However, in order to try to conserve space on my form (because I have several of these) and because the listbox may have serveral 100 items it and I don't want the user to have to scroll through them to find the one they want (because the list box only accepts the first char entered), I would like to use a combobox.
Now, I can open the combobox (cbo.dropdown) when it receives focus. But as soon as I click on an item, the combobox closes. In the OnClick event of the combobox, I have tried setting focus to another control who, in turn, returns focus back to the combobox in hopes that the GotFocus event of the combobox gets fired again. But it doesn't work.
Any ideas?