gmazza via AccessMonster.com said:
Is there anyway to not alloow the user to enter anything into a combo box,
whether it be a key stroke or mouse click, yet they can pick from the
combo
box by clicking the combo box button and choosing a value there?
You can suppress keystrokes easily, using the KeyDown event, but it'll be
harder to clearly distinguish mouse-clicks that are part of dropping down
the list and making a selection from it. You might set the combo box's Tab
Stop property to No and put a transparent command button over it, and have
that command button's click event set the focus to the combo and drop it
down, I suppose. Or you might use your own combination of a text box, a
list box, and a command button, with the list box kept hidden until the user
clicks on the command button.
What exactly are you trying to achieve, and why do you want to use a combo
box while disabling so much of its functionality?