Hi!
I am using code to Import the table.
When it is linked – my query is very slow.
However it is making table Linked again.
Private Sub Form_Open(Cancel As Integer)
Dim msg As String
Dim rsp
msg = “Do you want to updat/refresh the data ?”
rsp = MsgBox(msg, vbYesNo, “Update Data”)
If rsp = vbYes Then
DoCmd.TransferDatabase acImport, “Microsoft Access”, _
“C:Documents and SettingsAccessReport.mdbs”, acTable, “ReportTable123”, “ReportTable”
End If
End Sub
How can I Import 6 tables?
And if you please, can explain it to me – why is the code works faster than when I am Importing same tables using File-Get Externat Data-Import???
THANKS