I am storing and retrieving data containing carriage returns from an SQLite database on the device. Works just fine on Android and BlackBerry but the carriage returns have no effect on the iPhone. The text all runs together with no line breaks.
I tried this:
dim sNote, backslash
backslash = Chr(92)
sNote = record["Note"]
sNote=Replace(sNote,vbCRLF,backslash & "n")
I also tried:
sNote=Replace(sNote,vbCRLF,"\n")
StackOverflow says to put a “\n” in place of the carriage return\Line Feed but what I am doing does not work.
Any help would be greatly appreciated.
Thanks
JamesF