Re: [fpc-pascal] String concatenation failure (again)

2016-08-03 Thread Jürgen Hestermann
Am 2016-08-02 um 20:12 schrieb José Mejuto: > Check the length of the string I think you have a NULL char at the end of every string, so only the first one (up to #00 char) is displayed. Yes, you are right. When I change the code for i := Low(Liste) to High(Liste)

Re: [fpc-pascal] String concatenation failure (again)

2016-08-02 Thread José Mejuto
El 02/08/2016 a las 16:51, Jürgen Hestermann escribió: I would expect that with the new string encoding handling widestring will be converted automatically to "MyStringType" (which is string in my case). This assumption is encouraged by the fact that "Liste" is shown with the correct list of

Re: [fpc-pascal] String concatenation failure (again)

2016-08-02 Thread Jürgen Hestermann
Am 2016-08-02 um 12:25 schrieb Jürgen Hestermann: > -- > type MyStringType = string; > var S : MyStringType; > Liste : array of MyStringType; > i : SizeInt; > > begin > [..] // "Liste" is setup with many string entries (which are also shown