1. What the acronyms mean. Correct me if I'm wrong, CR - Carriage Return, LF - Line Feed, and CRLF - combination of the two.
2. When do I use which one. I did a simple test but failed to find out the differences among those three.
ConsoleWrite("CR - Four" & @CR)
ConsoleWrite("LF - Four" & @LF)
ConsoleWrite("CRLF - Four" & @CRLF)
ConsoleWrite( "CR " & StringLen(@CR) & @LF)
ConsoleWrite( "LF " & StringLen(@LF) & @LF)
ConsoleWrite( "CRLF " & StringLen(@CRLF)