Currently I have an admin page that has 2 listboxes. One has a list of states that once one is selected supplies a list of counties for the other listbox. Both are set using the listboxes datasource property set to a stringcollection in the application settings.

I am also setting it up so that you can add item(s) to the state list. When an item is added to the state list it also adds a new countylist to the application settings (as a string collection).

The good news is that all this works fine. The problem I have is that when a user adds a new state, how do I reference the associated county list? I started with a case statement but once a user adds a value the case statement goes out the window. I tried to access it using
Code:
My.Settings.Properties.Item(st & "CountyList")
No good. Any ideas??

Thanks,

D