You are not logged in.
I'm using Windows 10, Delphi 7, codepage 1250 and SQLite.
Some of our special characters did not show up right, so I dig into the code and found/fix two bugs.
File: SynComons, version 1.18, date 2016-07-19_091339_73271568b4
1.
line
WinAnsiConvert := TSynAnsiConvert.Engine(CODEPAGE_US) as TSynAnsiFixedWidth;
should be
WinAnsiConvert := TSynAnsiConvert.Engine(GetACP) as TSynAnsiFixedWidth;
2.
line
djWinAnsi: AddAnyAnsiString(PRawByteStringArray(P)^[i],twJSONEscape,CODEPAGE_US);
should be
djWinAnsi: AddAnyAnsiString(PRawByteStringArray(P)^[i],twJSONEscape,GetACP);
Awesome library and work!
Best regards,
Dean
Offline