Results 1 to 9 of 9

Thread: **RESOLVED** Line Input but no carriage returns in the file

Threaded View

  1. #4
    INXSIVE Bruce Fox's Avatar
    Join Date
    Sep 2001
    Location
    Melbourne, Australia
    Posts
    7,429
    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:
    1. Do Until (end of Array)
    2.    If lineArray(x) <> "vbLf" Then newArray(z) = lineArray(x)
    3. Bla, Bla
    Last edited by Bruce Fox; Aug 2nd, 2002 at 07:48 AM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width