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.
 
Back
Top