I have a little problem, I don't know how to use code ASCII. I want to specify in this formula (for example)
Code: Select all
ASCIIOutput (cOutputLog 'Error copying process');
Thank you very much for your help

Code: Select all
ASCIIOutput (cOutputLog 'Error copying process');
That's not a formula. And I'm not being pedantic when I say that, I mean that it's not intended to calculate anything. All it does is to output the text that you specify in the second (and following, if applicable) arguments into the file that you specify in the first argument.beber005 wrote:Hi everyone,
I have a little problem, I don't know how to use code ASCII. I want to specify in this formula (for example)a newline. Let me explain: This final variable is a body of an email and I return regularly to the line. However, I do not know how to do that thank's to TM1. In other language, you just need to specify "\ n" in the string to do this but there ...Code: Select all
ASCIIOutput (cOutputLog 'Error copying process');
Thank you very much for your help
Code: Select all
ASCIIOutput (cOutputLog, 'Error copying process');
ASCIIOutput (cOutputLog, '');
"I am not playing. This is not a a game..."[1]beber005 wrote:Yes I know Kirk, you play with words ^ ^
No, I can not write another ASCIIOutput. My return line must be in the same ASCIIOutput because it is sent or rather used by the SMTP service. In short there is not the problem, ultimately what I wanted to know was if it was possible to have an equivalent of "\ n"
So yes I used the CODE () function and I know the ASCII code '' but I do not know then use
Code: Select all
# Assuming that you don't want the content surrounded in quotes, as seems likely:
DatasourceASCIIQuoteCharacter='';
s_OutputString = 'Error copying process' | Char(10);
ASCIIOutput (cOutputLog, s_OutputString );