Reading XML & CR + LF

  • Thread starter Thread starter info
  • Start date Start date
I

info

Hi there

For my Application I get some XML Files, which are ment to be imported
into the SQLCe DataBase.

Normally a New Line should be marked with CR + LF So I think its
CHR(13) and CHR(10)

But unfortunately, the XML Files contains only chr(10) becuase the
Programm which generates this automatically transforms it like this.

Is there a Way to open Read the Memos of these XML FIles in a way so
that it results in an correct CF + LF `?

Because of this in the Textboxes are only some squares and no new
liines and this doesn't like really nice
 
You can write a code to search and replace LF with CR+LF in the file before
loading it.
 
Back
Top