Line break question

  • Thread starter Thread starter jy836
  • Start date Start date
J

jy836

When saving a text file which contains many lines, which character(s) is
needed for a line break? Is it Chr(13) & Chr(10), or just one of them? Or is
it something else completely? Thanks.
 
* "jy836 said:
When saving a text file which contains many lines, which character(s) is
needed for a line break? Is it Chr(13) & Chr(10), or just one of them? Or is
it something else completely?

It's your choice. For Windows systems, I prefer 'Environment.NewLine'
or 'ControlChars.NewLine' or 'ControlChars.CrLf'.
 
Back
Top