Transfer Text (csv) in DAO

bugsy

Registered User.
Local time
Today, 09:24
Joined
Oct 1, 2007
Messages
99
does anyone know what this code would be like in DAO ?

Code:
DoCmd.TransferText acExportDelim, "My_Transform", "Table", "C:\temp\xxx.csv"
[\code]
 
Can you explain a bit more of what you are looking for and why? The code you posted works, so what about it doesn't work for your purposes?
 
Can you explain a bit more of what you are looking for and why? The code you posted works, so what about it doesn't work for your purposes?

I am trying to transfer the contents of CSV file to a Table
it doesn't do anything..., and no error message

it did work in macro; but i need the name to contain a date field, so it needs to be done through VBA
 
I see the problem; i was doing 'export' instead of 'import'
changed; now it works
 
thanks, unfortunately it won't let me add to your reputation again :((
 

Users who are viewing this thread

Back
Top Bottom