Lookup tables contain, in general, a fixed list of data. This
data doesn?t change very often in database business applications.
Examples of this data could be a product list, category type,
supplier list, state name, zip code, phone area code, etc. In
Windows and Internet web business applications, most of these
lookup tables are graphically implemented by using ComboBox,
ListBox or CheckListBox read-only controls. These controls are
loaded with data using two main columns, ID and Name. For
example, the USA state table, the ID could be ?CA? and the Name
?California?. Some times, for standard Windows form and Internet
web page we need to show data to the end-users from many of these
lookup tables. A fast data loading process and defining the main
column values for each lookup table is required. In this article
I will show you standard lookup data loading procedure and the
generic classes object to store and read-only the values of the
ID and Name …
[Read more]