Access VBA listbox question
Hi,
Please help with adding items to a listbox using a form in Access. I dont want to use the access wizard feature of having the listbox automatically populated. Rather I want to enter a value and have that value populate into the listbox.
I thought i could just go:
Code:
list1.additem ("red")
but it doesnt recognise the additem referance.
Thanks!
:confused: :confused:
Re: Access VBA listbox question
Quote:
Originally posted by SmagO
Hi,
Please help with adding items to a listbox using a form in Access. I dont want to use the access wizard feature of having the listbox automatically populated. Rather I want to enter a value and have that value populate into the listbox.
I would have considered useing a seperate table List_of_Choices and use it to populate Combos and listboxes. Thatway I could edit it at runtime.