Hi
Depends if you want base the combo box on the recordset (so that changes to the recordset will automatically reflect in the combo on requery, or if you want a list frozen as of 'now'
To have a list
set the rowsourcetype to ValueList
Write a loop to read thru your record set and build a string consisting of Rs!FieldValue each one seperated by ;
set the .rowsource to the string value
To base the combo on the record set
set the rowsourcetype property to Table/query
set the rowsource property to the SQL of your recordset
In both cases you will also need to set number of columns, column widths, bound column, by setting the properties of the combo Regards
Ken Reay
Freelance Solutions Developer
Boldon Information Systems Ltd
UK