krazy369 / vba-json

Automatically exported from code.google.com/p/vba-json
0 stars 0 forks source link

Incorrect CrLf encoding? #3

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
Some data seemed to have double the enters in text every time it was saved,
it seems to be because 

               Case "n"
                  SB.Append vbNewLine
                  index = index + 1

should be:
               Case "n"
                  SB.Append vbLf
                  index = index + 1

in the parseString function.

Original issue reported on code.google.com by webmas...@ediy.co.nz on 25 Mar 2009 at 6:34