i use an old version of filepro on a unix sco system. i am trying to export a file for the credit bureau that they want with a carriage return and line feed. the problem is that the way my prc is written it doesnt recognize each record to put a ^m or ^j and if i use the \n with the export command with out the -x it loses the blank characters in the fields.
can anyone suggest a way to imbed the ^m or ^j or both in the line processing so that i can tell it where to have a line feed etc.
i can redefine each field (with variable fields) to have all the blank characters then send it out with export \n but that seems like a lot of trouble.
can anyone make a suggestion?
thanks,
hubert
aa=chr("10") will give you a line feed - but you may have to use chr("10") and chr("13") for a carriage return and line feed.