Disable Combo Drop down list

  • Thread starter Thread starter Jessie
  • Start date Start date
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
 
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.
 
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.





.
 
Back
Top