I would like to append a linefeed to a string, but nowhere in the doc, or forum can I find a working example how to add a line feed to a string
SOLVED - Here is how you do it :
Jaymer and another user, forgot name... helped
Create a new column in SystemSettings - through the app is fine. Mine is LineFeedChar varchar(10)
For SQL Server:
update [dbo].[SYSTEMSETTINGS]
set LineFeedChar = char(13) + char(10)
Then this works:
'this is my string' + SystemSettings.LineFeedChar + SendMemberMessages .Message
and this works:
'this is my string <<SystemSettings.LineFeedChar>> <<SendMemberMessages .Message>>'
Thanks again to all who contributed.
Dave
I have tried:
'this is my string\n' + SendMemberMessages .Message
'this is my string' + '\u000D' + SendMemberMessages .Message
'this is my string' + '\n' + SendMemberMessages .Message
'this is my string' + '\n' + SendMemberMessages .Message
'this is my string' + \n + SendMemberMessages .Message
Nothing works. On most of the above, I do not get error messages.
Dave