L
Luciano
Hi,
I wish to have a Back end/Front End approach of my Access 2007 database.
I linked my tables with the Split-Wizard. I guess I have some other actions
to do, because it doesn't work. May-be, I have to modify some VBA-code so
that Access can approach these linked tables?
I wrote some code in a global module:
Sub OpenReservationsQry()
Set ws = DBEngine.Workspaces(0)
Set db = DBEngine.Workspaces(0).Databases(0)
Set qrReservaties = db.OpenRecordset("tblReservations", DB_OPEN_DYNASET)
End Sub
Public Sub OpenFlights()
Set ws = DBEngine.Workspaces(0)
Set db = DBEngine.Workspaces(0).Databases(0)
Set tbVluchten = db.OpenRecordset("tblFlights", DB_OPEN_TABLE)
End Sub
I wish to have a Back end/Front End approach of my Access 2007 database.
I linked my tables with the Split-Wizard. I guess I have some other actions
to do, because it doesn't work. May-be, I have to modify some VBA-code so
that Access can approach these linked tables?
I wrote some code in a global module:
Sub OpenReservationsQry()
Set ws = DBEngine.Workspaces(0)
Set db = DBEngine.Workspaces(0).Databases(0)
Set qrReservaties = db.OpenRecordset("tblReservations", DB_OPEN_DYNASET)
End Sub
Public Sub OpenFlights()
Set ws = DBEngine.Workspaces(0)
Set db = DBEngine.Workspaces(0).Databases(0)
Set tbVluchten = db.OpenRecordset("tblFlights", DB_OPEN_TABLE)
End Sub