G
GeyikBaba
I am using Access 2003, VBA, and am trying to create a comma delimited text
file.
I am having a problem with a CF + LF put at the end of each print command.
Because I have a lot of fields, I need to break each line up into several
PRINT statements. Since Print ends with the CF+LF character , each line is
being broken up into several lines.
Can I prevent Print from appending a CF+LF? Is there another command which
does not append CF+LF?
An example is below. It should be one line, but it is coming out as two.
Thanks
Mike Thomas
strLine = "The first part of the line -- "
Print #filenumber, strLine
strLine = "the second half of the same line"
Print #filenumber, strLine
file.
I am having a problem with a CF + LF put at the end of each print command.
Because I have a lot of fields, I need to break each line up into several
PRINT statements. Since Print ends with the CF+LF character , each line is
being broken up into several lines.
Can I prevent Print from appending a CF+LF? Is there another command which
does not append CF+LF?
An example is below. It should be one line, but it is coming out as two.
Thanks
Mike Thomas
strLine = "The first part of the line -- "
Print #filenumber, strLine
strLine = "the second half of the same line"
Print #filenumber, strLine