Can a combo box accept input? (1 Viewer)

Bee

Registered User.
Local time
Today, 14:36
Joined
Aug 1, 2006
Messages
487
Hi

I have searched for this in the forum search, but nothing related came up.
I am wanting to make a combo that will allow data entry as well as display the normal drop down list for viewing data. Is that possible in the combo control in Access?

Any suggestions will be very much appreciated.

Thanks,
B
 

wazz

Super Moderator
Local time
Today, 21:36
Joined
Jun 29, 2004
Messages
1,711
not completely sure of the error msg but it could be a missing reference.
in vba editor go to tools-references and make sure 'microsoft dao 3.6 object library' is checked.

also make sure you've changed all the "terms" in the code to match what you have, ie. change cbo"Name", tbl"Name", "Company", etc. to match the names of your own combobox, tablename, and field you want to update.
 

Splinters

Registered User.
Local time
Today, 06:36
Joined
Sep 6, 2007
Messages
67
not completely sure of the error msg but it could be a missing reference.
in vba editor go to tools-references and make sure 'microsoft dao 3.6 object library' is checked.

also make sure you've changed all the "terms" in the code to match what you have, ie. change cbo"Name", tbl"Name", "Company", etc. to match the names of your own combobox, tablename, and field you want to update.

That did it - thanks!

I also found that I needed to keep the items you mention in the quotes to avoid an "unknown variable" error...

Thanks,
Stephen
 

Users who are viewing this thread

Top Bottom