I wanted to take an informal poll about what others thought and implemented when it comes to drop-down boxes. Although (one of) the main purpose for the drop-down box is for data integrity, there is never much dialogue about the maintenance of drop-down boxes.
An example would be a drop-down boxes for categories, types, or other such information we might use to pigeon-hole data for segregating and counting purposes. Although the quantity of list might hardly ever change sometimes higher-ups want to add another to the list.
I personally use a tblValueList that holds any sort of data for my drop down boxes. It has 3 Fields (ID, ListType, ListDescription). For the drop down box, let's say it's a Category, I use "Category" in the ListType to filter the query and ListDescription is stored into that data field.
Hence, when I update, I just add the appropriate ListType and the new item in ListDescription. This way I can 'outsource' maintenance by allowing a priviledge user access to make these updates through a form.
Is my method normal? or do most use the static list in the properties of the combo box?
-dK
An example would be a drop-down boxes for categories, types, or other such information we might use to pigeon-hole data for segregating and counting purposes. Although the quantity of list might hardly ever change sometimes higher-ups want to add another to the list.
I personally use a tblValueList that holds any sort of data for my drop down boxes. It has 3 Fields (ID, ListType, ListDescription). For the drop down box, let's say it's a Category, I use "Category" in the ListType to filter the query and ListDescription is stored into that data field.
Hence, when I update, I just add the appropriate ListType and the new item in ListDescription. This way I can 'outsource' maintenance by allowing a priviledge user access to make these updates through a form.
Is my method normal? or do most use the static list in the properties of the combo box?
-dK