Adding New Values To The List/Combo Box On The Form

  • Thread starter Thread starter M A Khalique
  • Start date Start date
M

M A Khalique

Guest
I have created a list box on a form, with values for users to pick from the pick list. How is it possible for users to add their own values on the form without amending the table attribute. Is it possible to create a pop up form allowing them to add to the pick list?
 
You could do it something like this.
In a textbox allow the user to input an item they want added to the list or combobox. then on the "add item" button add code similar to this.

combo1.additem & '"txtbox.text"
your telling the combobox to add the string that is in the txtbox.
 
Would this work with a combo-box?
 

Users who are viewing this thread

Back
Top Bottom