Hi there,
You can concatenate the values you need in the query and then display them:
SELECT Name + ' (' + Address + ')' AS FullDescription, Name FROM Table
Then you can use FullDescription as the text for the drop down and Name for the value.
You can also query them as separate columns (Name, Address) and then concatenate them in your
VB code.
Hope this helps,
Imar