Search found 2 matches

by notricky
Tue Jul 11, 2017 6:55 pm
Forum: XLSReadWriteII 3/4/5
Topic: Unicode text is not recognized as unicode.
Replies: 1
Views: 6017

Re: Unicode text is not recognized as unicode.

In order to overcome this issue I had to set CompressStrings option to False.

Code: Select all

TXLSReadWriteII4.CompressStrings := False;
by notricky
Mon Jul 10, 2017 8:26 pm
Forum: XLSReadWriteII 3/4/5
Topic: Unicode text is not recognized as unicode.
Replies: 1
Views: 6017

Unicode text is not recognized as unicode.

function TXc12DataSST.AddString(AText: AxUCString): integer; ... if IsUnicode(AText) then P := MakeString(AText) else P := MakeCompressedString(AText); // always goes here, despite that AText = 'Hüco' ... end; ...... function TXc12DataSST.IsUnicode(const S: AxUCString): boolean; var i: integer; W: ...