combo box

kbreiss

Registered User.
Local time
Today, 23:34
Joined
Oct 1, 2002
Messages
228
Is there a way to get a combo box so users can't type input into it. I know I could use listboxes, but I have already got the combo boxes in my code.

Thanks in advance,
Kacy
________
Lovely Wendie99
 
Last edited:
Do you mean so that users can't add to it? If so, set the "Limit To List" property to Yes.
 
Few ideas:

On the combo's KeyPress event put:

Code:
KeyAscii = 0

Or, set the LimitToList property to Yes and in the NotInList event put:

Code:
Response = acDataErrContinue
 

Users who are viewing this thread

Back
Top Bottom