Importing data

Linda31

Registered User.
Local time
Today, 02:41
Joined
Jun 12, 2003
Messages
12
Hi all. I need to import data from an ACT db to Access. I cannot directly link Table to db because of multi users. ACT db is on the network, and I need to update the Customer table in Access with the info from ACT. The code I currently have is:

Testing\Documents and Settings\Act\Cust.dbf
(Computer\Folder\Folder\db)

Is this right?

Thanks
 
Your code should take the form:

DoCmd.TransferDatabase acImport, "Dbase 5.0", "\\Testing\Documents and Settings\Act\
", acTable, "cust.dbf", "tblMyTable"

or you can import manually using the menu File/getExternal data
 
Thank you ancient one. I actually figured it out. I appreciate your reply.
 

Users who are viewing this thread

Back
Top Bottom