Hi Everyone,
Both DB1 and DB2 are Access 97 DBs.
DB1 – Security is set. User has no permissions to use tables. Users access the tables by queries RWOP.
DB2 – Security is set. Different workgroup file.
From within DB2 using the – Dim dbe As PrivDBEngine – I access records from a table utilizing the users RWOP in DB1 by – Set rst = dbs.OpenRecordset(“EditRecords”) and build a table and report from the records returned by the query.
While in DB2, sometimes there is a need to edit records in DB1. When the user is in DB1 the user uses “qry_EditRecords” to edit records.
My question – is it possible from within DB2 to use “qry_EditRecords” from DB1 as the recordsource for a form in DB2?
Me.RecordSource = rst and db!Forms![MyFormName].RecordSource = rst – Doesn’t work. I get a Type Mismatch error. Access doesn’t like .RecordSource.
Hope this make since.
Thanks