
Originally Posted by
GlistEngineering
...I decided to just go with a list box, but am disappointed a drop-box control does not seem to be available in Access 2007.
The Combobox certainly is available in v2007! I'm not exactly sure how you enter 'blanks,' but if your quest is for "a drop box that does not allow users to type in the box," as you posted, you can use the KeyDown event of the Control:
Code:
Private Sub ComboBoxName_KeyDown(KeyCode As Integer, Shift As Integer)
Select Case KeyCode
Case vbKeyReturn, vbKeyTab, vbKeyUp, vbKeyDown
KeyCode = KeyCode 'Accept these keys
Case Else
KeyCode = 0 ‘Block all other keys
End Select
End Sub
Linq ;0)>