Creating application icons from multiple PNGs

Note to self: Icons for Windows applications with multiple resolutions can be created by combining multiple png images using the convert tool that comes with ImageMagcic: convert 16.png 32.png 48.png 128.png 256.png -colors 256 icon.ico (From this answer to this question on superuser.com.)

GExperts code formatter is now a little bit more Unicode aware

A new release of my experimental GExperts version is available. I fixed yet another issue with Unicode / UTF-8. It works now with some Arabic strings which got converted to question marks before. The usual warning applies: My unit tests still work so apparently I haven't broken too much in the process. I also tested … Continue reading GExperts code formatter is now a little bit more Unicode aware

Experimental GExperts Version 1.37 2015-05-30 released

In this version the formatter now uses unicode strings for all Delphi versions that support them. The previous versions converted native Delphi strings to AnsiString before formatting and converted the result back from AnsiString to native Delphi strings. In rare cases this resulted in some special characters being replaced by '?' after the formatting. Thanks … Continue reading Experimental GExperts Version 1.37 2015-05-30 released