External RecordSource

  • Thread starter Thread starter JonWayne
  • Start date Start date
J

JonWayne

Is there a way to make a table in an external database the RecordSource of a
form in the local database? How, if so?
 
JonWayne said:
Is there a way to make a table in an external database the RecordSource of a
form in the local database? How, if so?


Use a query with the IN phrase in the FROM clause:

SELECT table.fielda, . . .
FROM table IN "pathtootherdb"
WHERE . . .
ORDER BY . . .
 
JonWayne said:
Is there a way to make a table in an external database the RecordSource of a
form in the local database? How, if so?


Sheesh, I forgot to mention the easy way, just link to the
table in the other db.
 

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