How do I create a combobox in a form that will display a range of options but not allow users to type in the box? In other words, I want a dropdown menu similar to one you'd see on a typical internet form.

At the moment, the nearest I can get is to use the MatchRequired property but this still allows users to type text (albeit without letting them type something that's not in the list)

Here's what I have at the moment:

ComboBox1.List = Array("January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December")

Cheers,

Owain