I've written a routine that imports a .csv file into Access. Once imported I need to delete that same .csv file. Is there a way to do that from inside my program?
I've written a routine that imports a .csv file into Access. Once imported I need to delete that same .csv file. Is there a way to do that from inside my program?
Yes, use Kill, like:
Kill filepath\filename
How to attach file: http://www.accessforums.net/showthread.php?t=70301 To provide db: copy, remove confidential data, run compact & repair, zip w/Windows Compression.
Thanks, I'll give that a shot and let you know.