vba - access2010 form with a non selectable combo box -


i have access 2010 form combo box. when run ado query drop down list shows when try , select nothing selected , message @ bottom of screen says form 'readonly'.

i think problem using same recordset form , combo box.

you can use sql statement populate combo box using row source property , set bound column 1.

cboassociate.rowsource =  "select distinct assignedto pc3claims assignedto not null order assignedto"  cboassociate.boundcolumn = 1 

this populate combo assignedto values , can set control source assignedto field in form's recordset.


Comments

Popular posts from this blog

mysql - FireDac error 314 - but DLLs are in program directory -

git - How to list all releases of public repository with GitHub API V3 -

c++ - Getting C2512 "no default constructor" for `ClassA` error on the first parentheses of constructor for `ClassB`? -