I made the small code example below to show that (the debugging window showed the values for Info(0) and Info(2) but an empty line for Info(1)). After changing the compiler setting to create an unicode exe, all text has been displayed fine.
This morning I restarted the PB5.40 IDE and checked, if the problem is still seen, but now I can't reproduce the issue anymore. So maybe it had soemthing to do with the planets constellation or whatever. Anyhow it could be that there's a bug somewhere (in the editor of the IDE?) which is responsible for this, so if anyone observes something like that, try to peek for more information...
Code: Select all
Global Dim Info.s(3)
Info(0)="R U N N I N G - "
Info(1)="R U N N I N G - "
Info(2)="R U N N I N G - "
Debug info(0)
Debug info(1)
Debug info(2)