Hi im trying to create a combo box with a number of areas each divided into groups similar to this:
<SELECT>
<OPTGROUP LABEL="Alkaline Metals">
<OPTION>Lithium (Li)</OPTION>
<OPTION>Sodium (Na)</OPTION>
<OPTION>Potassium (K)</OPTION>
</OPTGROUP>
<OPTGROUP LABEL="Halogens">
<OPTION>Fluorine (F)</OPTION>
<OPTION>Chlorine (Cl)</OPTION>
<OPTION>Bromine (Br)</OPTION>
</OPTGROUP>
</SELECT>
But instead of having fixed values i would like to build the list from an access db.
Any ideas?
<SELECT>
<OPTGROUP LABEL="Alkaline Metals">
<OPTION>Lithium (Li)</OPTION>
<OPTION>Sodium (Na)</OPTION>
<OPTION>Potassium (K)</OPTION>
</OPTGROUP>
<OPTGROUP LABEL="Halogens">
<OPTION>Fluorine (F)</OPTION>
<OPTION>Chlorine (Cl)</OPTION>
<OPTION>Bromine (Br)</OPTION>
</OPTGROUP>
</SELECT>
But instead of having fixed values i would like to build the list from an access db.
Any ideas?