Filling combobox with data from another database

  • Thread starter Thread starter ReidarT
  • Start date Start date
R

ReidarT

I want to fill a combobox with records from a table in another database (the
table is not active (nor local or linked) in this front-end database)
I can open the database and get the recordset, but I don't know how to bind
the combobox to the recordset.
regards
reidarT
 
It might be easiest to link the table, but you could set the combos
RowSource to something like this:
SELECT MyId FROM MyTable IN 'C:\MyFile.mdb';
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top