Eichenbaum
New member
- Local time
- Today, 16:56
- Joined
- Jul 22, 2011
- Messages
- 8
Hello,
I have a database divided in Back-end and Front-end. I'm trying to generate a report in front-end using the data from Back-end as below:
Set db = DAO.OpenDatabase(DatabasePath)
Set rst = db.OpenRecordset("tblEmployee", dbOpenDynaset)
Me.RecordSource = rst.Name
When I try to open the report, access warns that it is not possible to find the table tblEmployee. I tried the same using a test table in front-end and works fine. How can I connect with a external record source (in this case, the back end?).
Many thanks in anticipation!
I have a database divided in Back-end and Front-end. I'm trying to generate a report in front-end using the data from Back-end as below:
Set db = DAO.OpenDatabase(DatabasePath)
Set rst = db.OpenRecordset("tblEmployee", dbOpenDynaset)
Me.RecordSource = rst.Name
When I try to open the report, access warns that it is not possible to find the table tblEmployee. I tried the same using a test table in front-end and works fine. How can I connect with a external record source (in this case, the back end?).
Many thanks in anticipation!