Hi
How can I change the way combobox shows the row source values, I want to just click ON the combobox not the down arrow, to show the list?
Thanks
Hi
How can I change the way combobox shows the row source values, I want to just click ON the combobox not the down arrow, to show the list?
Thanks
Try
Me.ComboName.Dropdown
In its got focus event.
Paul's suggested method for doing this is pretty much the standard way. The OnClick event of a Combobox doesn't fire until you click on a selection from the dropdown list! You could use the code he gave you in the DoublelClick event, which will fire when you double click on the Combobox itself, OnFocus is really the way to go for this.
Linq ;0)>