I even got to compile Dev-C++ with the Borland Delphi 6 I got without problems, even though I wasn't feeling like doing much work on it because of Delphi (I was teached Pascal about four years ago, but... you know, C++ just rules).
Delphi Personal is free as in cost, but not free as in freedom. For example, distributions of Delphi 6/7/8/9 (2005) are very rare across the internet. The japanese version of Delphi 6 is still available on an old section of Borland's co.jp site. There was some other fellow distributing Delphi 6 freely, but it seems to have disappeared.
I like Object Pascal quite a bit myself; the way it handles namespaces and units is simple and consistent. The assignment and equality operators are easily differentiated and more difficult to typo than in C. Blocks are very clearly labelled, and the interface/implementation structure helps keep code relatively well organized. Also, the "uses" section of each unit forces the programmer to keep track of dependencies rather clearly.
Unfortunately, Lazarus is the only open-source alternative to the mostly-commercial Delphi. The compiler and IDE are rather large; the installer data expands to 225 mbyte. (46.1 mbyte of that is the sources to the free pascal compiler; 68.1 mbyte are the build tools and pre-built unit files for win32, gtk, rtl, and other libraries.) In contrast, CodeBlocks is 7.30 mbyte and MinGW is 53.7 mbyte on my system.
I could live with Lazarus' huge IDE size -- it's still relatively small compared to the monsters that are Borland's and Microsoft's tools. What this developer can't live with is the size of the generated programs; a basic executable with one form and virtually no code of its own compiles to a 5.82 mbyte executable. This is partly because a lot of debugging information is included. Strip can lighten the load significantly, but a stripped binary is still 1.52 mbyte. "Smart linkable (-CX)" and "Link Smart (-XX)" in the compiler options do nothing to reduce the size. The problem has three joint causes, from what I've read on the Lazarus forums. One, the precompiled units included with lazarus are debug rather than release versions; therefore they contain a good deal of normally unnecessary debugging symbols. Two, the linker (ld) employed is an external solution and completely unoptimized for object pascal work (this is likely the reason why smart linking fails so miserably). Three, the design and usage of the LCL (the visual component library used by Lazarus) is not modular enough to link only used widgets/components even if the first two problems were alleviated. [Example: the win32 code and GTK code are never both required, but chunks of both as well as other libraries are included in each executable.]
The very fact that Lazarus doesn't provide a powerful linker to resolve some of this is pretty sad. However, it does in part demonstrates how much smaller the developer base for object pascal is compared to C++. Vincent, who appears to be the lead developer for Lazarus, doesn't have the time/desire to update the GNU linker so that it can "smartlink" debug-version pascal units. It seems like he intends to fix the problem eventually, though whether it would be by improving ld or writing a entirely new linker is unclear.
Executables created with Delphi 6/7 and the VCL are not that small either. Usually they end up in the 400-550 kbyte range (assuming no cheating, like using PKZip or UPX). Unfortunately, the situation with Delphi appears to be getting worse and not better. The newer incarnations are now primarily directed towards .NET development, which introduces even more bloat into the IDE. Generated assemblies/programs are probably smaller now, but that's at the cost of a 22+ mbyte runtime/interpreter.
It seems to me that C/C++ development is the most favorable, at least for now.