Tag Archives: tips

Dynamically generating code with Delphi Prism

In my last post I covered dynamically compiling code with Delphi Prism and this time I’m going to introduce dynamically creating code which could then be written out to a source file or compiled from in memory. You might want to generate code dynamically for a wide variety of reasons, whether it be to bootstrap [...]

Quick Tip for handling IE Invalid XML Files

I encountered a strange bug with a Google Maps API application which loaded a set of points and other information from a static XML File.  The Application would work beautifully for every browser except for Internet Explorer 6 and 7 (Surprise! Surprise!) where it would simply fail to load any data.
After a bit of Googling I was [...]

Migrating a Project to Delphi Prism from Delphi.NET

As we know, now that the future of Delphi.NET is Delphi Prism (based on the RemObjects Oxygene compiler) we have to migrate our Delphi.NET projects to be compatible with the Prism compiler.
The Easiest way to get started is to look at the free Oxidizer tool provided on the RemObjects Wiki. The tool helps with the [...]