Hi,
I'm trying to import a query from another access database. The code appears to work, the query name appears in the query folder. However when I try to open the query I get the message that the jet engine cannot find the table that the original query is based on.
The code I'm using is
Private Sub Command0_Click()
Dim DREAD As String
DREAD = "N:\review\Reports\DesRep.mdb"
DoCmd.TransferDatabase acImport, "microsoft access", DREAD, acQuery, "_BURNDOWN", "_BURNDOWN"
End Sub
Anyone any Ideas?
I'm trying to import a query from another access database. The code appears to work, the query name appears in the query folder. However when I try to open the query I get the message that the jet engine cannot find the table that the original query is based on.
The code I'm using is
Private Sub Command0_Click()
Dim DREAD As String
DREAD = "N:\review\Reports\DesRep.mdb"
DoCmd.TransferDatabase acImport, "microsoft access", DREAD, acQuery, "_BURNDOWN", "_BURNDOWN"
End Sub
Anyone any Ideas?