pjohns
9th January 2006, 12:48
Hello,
I have a report which is used to generate a payment file to our Bank. An example of the code is below.
print.string = shiftl$(strip$(tfcmg001.bano)) & "," & tfcmg001.ccur.......
I have to make a change to the report which will output my file with double quotes around each field. i.e. "123456","EUR"
What is the syntax, using the example above, to encase my fields with ""?
I tried print.string = shiftl$(strip$("tfcmg001.bano")) & "," & "tfcmg001.ccur" but this gave me tfcmg001.bano,tfcmg001.ccur
Thanks
PJ
I have a report which is used to generate a payment file to our Bank. An example of the code is below.
print.string = shiftl$(strip$(tfcmg001.bano)) & "," & tfcmg001.ccur.......
I have to make a change to the report which will output my file with double quotes around each field. i.e. "123456","EUR"
What is the syntax, using the example above, to encase my fields with ""?
I tried print.string = shiftl$(strip$("tfcmg001.bano")) & "," & "tfcmg001.ccur" but this gave me tfcmg001.bano,tfcmg001.ccur
Thanks
PJ