I am a newbie with a question about my form. I populate my combobox
using this code;
cmboBusGroup.List() = Array("Brecksville", "Chicago", "Ritterhude")
What do I need to add so that in the future the user can add to the
list themself? For example, if the user wants to add "London" I would
like to have the user click a button (or something) to "Add BusGroup"
and add "London" without having to call me to add it in the code.
How do I do this?
Thank you!
Debbie
Anand.V.V.N - 25 Apr 2005 12:21 GMT
Hi Deb,
You can use a text file to store your entries, pick the entiers from the
text file and add it to the combobox. In the combobox you can add a item "New
item", when the user selects this you can prompt the user to input the name,
and then store the entry in a text file.
Need any help in code let me know.
Anand