I don't have a persistent link to the sql server database. The form pulls data from the tables in sql server when it needs it. But I have a list box in the form that I want to occasionally requery when the user adds another record that will be populated in the sql server table. I have code that links the table, populates the new record, and then drops the link. After that is done, I want the listbox to requery to show all of the values including the new one just added for the table. I don't see a property field that will allow me to use a recordsource from a sql server database table that is unlinked. Do I have to have code create the connection, update the listbox from sql server, and then drop the link again? Or is there an easier way?