Hi there
As always any help gratefully received.
Am writing script to create a csv file based on data from a DB. the script is something like;
strComment = objRc1.Fields("CommentField")
csv.Write strComment
The problem I have is, as I try to add a new record to my csv file, things get messed up because the strComment has line feeds within original data and strComment is then placed on multiple lines.
What I would like to do is have one long text string with no line feeds, etc. Was hoping there is a way without having to write objRc1.Fields("CommentField")
to temp file and then set the contents of temp file to strComment.
REgards ACO
As always any help gratefully received.
Am writing script to create a csv file based on data from a DB. the script is something like;
strComment = objRc1.Fields("CommentField")
csv.Write strComment
The problem I have is, as I try to add a new record to my csv file, things get messed up because the strComment has line feeds within original data and strComment is then placed on multiple lines.
What I would like to do is have one long text string with no line feeds, etc. Was hoping there is a way without having to write objRc1.Fields("CommentField")
to temp file and then set the contents of temp file to strComment.
REgards ACO