end of line

  • Thread starter Thread starter -00Eric Clapton
  • Start date Start date
0

-00Eric Clapton

I want to write importing CSV file into a access table. How can I deal with
the end of line? PLease advise. Thanks.
 
Eric, can you clarify your question? Are you just trying to import a CSV
file via code or a macro?

Destin Richter
(e-mail address removed)
 
Are you reading one line of the CSV file at a time or using TransferText
Method?

TransferText would be much faster and handle EOL automatically (used as the
Record separator).
 
Using code.

Destin Richter said:
Eric, can you clarify your question? Are you just trying to import a CSV
file via code or a macro?

Destin Richter
(e-mail address removed)
 
Is the EOF signifies the end of the Record?

Is there any reason you are not using TransferText? (which is a lot easier
and much more efficient than reading and processing one line at a time)
 
Yes, EOF signifies the end of record. The reason I am using coding instead
of transfer text because my importing process is complicated. It's not just
a simple field to field import. Is there a way to detect the end of line in
CSV, if I do it this way?
 
Back
Top