Jim,
One soulution Iv'e used in this situation, is to only load my
extraction Variable (or other Array, or whatever) with valid
data. ie Anything other than the LF.
In other words, take the loaded Array (including the double LF's)
and when reading out the lines of data, ignore the LF's.
Like:
VB Code:
Do Until (end of Array) If lineArray(x) <> "vbLf" Then newArray(z) = lineArray(x) Bla, Bla




Reply With Quote