Quote:
Originally posted by chrisgaddy
Are the values in your pulldown box coming from a recordset also? Basically, you want to make the value from the recordset selected. Like this:
<option value="1" selected>Option 1</option>
The values of the pull-down box are not coming from the recordset, but what you said is basically what I want to do. Lemme explain: the pulldown box has selections of 5 values(1 to 5). When they select one and save, a copy of the selected value goes to the recordset. When they want to edit that recordset, I want the value that is being returned to become the default selected. Then, if they need to, they can change it. Therefore, from what you said above, yes I want to make the value from the recordset selected.