selahlynch
Registered User.
- Local time
- Today, 13:16
- Joined
- Jan 3, 2010
- Messages
- 63
I cannot import a linux text file into my access database using the following code...
Can I modify my code to handle linux or windows text files?
And a bit of background:
I have a database where I will be asking multiple users to import a number of text files, some from Windows and some from Linux. Up till now I am not able to import the Linux files. I realize I could insist that users convert their files using something like unix2dos command, but I'd like to come up with a more user friendly solution.
Thanks,
Selah
Code:
Open spspath For Input As #1
While Not EOF(1)
Line Input #1, strline
Can I modify my code to handle linux or windows text files?
And a bit of background:
I have a database where I will be asking multiple users to import a number of text files, some from Windows and some from Linux. Up till now I am not able to import the Linux files. I realize I could insist that users convert their files using something like unix2dos command, but I'd like to come up with a more user friendly solution.
Thanks,
Selah