combo box

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I set up a combo box and programmed it to accept new words when in the form
view if a word is not in the current list. The new word will stay in the
combo box if you go to another record but when the form is closed then the
word disappears also.

Does anyone know how to save the word to the combo box?
 
Hi,
you wouldn't actually save the value to the combobox, but to the underlying
datasource. Most likely the combo is based on a table, or should be, so if
you want users to be able to add values at some point you should pay
attention to the comboboxe's NotInList event.
You can find a great tutorial on how to handle this here:
http://www.databasedev.co.uk/not_in_list.html
also check this
http://msdn.microsoft.com/archive/d...-us/office97/html/addingrowtocomboboxlist.asp
This should get you started.
HTH
Good luck
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Combo Box 3
combo box filter 1
combo box 1
Unbound combo box 6
Combo Box Question 4
combo box 2
Combo Box and First Record 5
Combo box to control two sub forms 2

Back
Top