Using v8, and MySQL
I added the CR field from SystemSettings to a form.
I could not get a CR to "stick" in the field. using Safari (Mac), I tried pasting in a CR (copied to clipboard from a text field in an app) but Aware didn't think I'd changed the field because if I clicked Close, it didn't say that there had been changes to fields on the form.
Using TOAD EDGE on Windows, I could edit the CR field in their mini editor, and enter a CR, but it wouldn't stick either.
Then, a simple SQL statement set it just fine.
I opened the DOS SQL window for mySQL:
update testbo_systemsettings
set CR = '\n'
in MSSQL, you could do this with SSMS:
update testbo_systemsettings
set CR = char(13)
--> JaymerTip keywords: carriage return, line feed