Disable Combo Drop down list

J

Jessie

Please help. I have a form with combos. A button that
adds a new record with the ff code DoCmd.GoToRecord , ,
acNewRec.
When the add new record procedure is started, I do not
want the drop down list of the combo to be active . All I
want is to use the combo as a data entry point. ( The row
source has a SQL search statement)How do I achieve this.
Thanks for the help
 
M

MacDermott

Is it a problem if someone enters a value which IS in the list?
If not, simply set the combobox's LimitToList property to false, and any
value entered into the textbox portion will be accepted.
 
J

Jessie

Thanks for the help.

-----Original Message-----
Is it a problem if someone enters a value which IS in the list?
If not, simply set the combobox's LimitToList property to false, and any
value entered into the textbox portion will be accepted.





.
 
Top