Unknown
The wait is over. If you have bought XE with Software Assurance, your SA Upgrade notice will be arriving shortly. If you want to try it out NOW, you can already download the 30-day trial… … Read more
13 years ago in Delphi, Embarcadero, RAD Studio, XE20
Bob Swart
Although not officially announced by Embarcadero, yet (unless I’ve missed something), the 30-day trial editions of Delphi XE2 Architect and RAD Studio XE2 Architect are now available for download. As soon as these products are… … Read more
13 years ago in Delphi0
Unknown
Published with permission from Embarcadero.When you start out a new simplistic GUI project in VCL or FireMonkey (FMX) in XE2, you will notice a few differences from older Delphi versions. XE2 introduce consistent use of… … Read more
13 years ago in Delphi, FireMonkey, FMX, vcl, XE20
Unknown
Published with permission from Embarcadero.The Embarcadero RAD Studio XE2 World Tour is upon us. The features are shiny! The reviews will be rave! As a Delphi developer, your favorite toolbox is about to get a… … Read more
13 years ago in cross-platform, Delphi, FireMonkey, XE20
Unknown
They say Generics and pointers don’t mix. type PMyThing<T> = ^TMyThing<T> // [DCC Error] E2508 type parameters not allowed on this type TMyThing<T> = record Thing: T; end;Ok, they don’t. But there is a loophole!type… … Read more
14 years ago in Delphi, generics, pointers0
Unknown
Curt Carpenter suggested a language addition for handing binary case logic.That gave me this idea. Chalk it up as another weird code snippet from yours truly.///<summary>> Convert array of booleans to a pseudobinary integer. ///Good… … Read more
14 years ago in binary, case, Delphi0
Yanniel
Last June 12th, 2011, I received an Embarcadero Community Newsletter pointing out that “certification exams are now available for Delphi developers. Embarcadero’s Delphi Certification Program offers two levels: Delphi Certified Developer and Delp… … Read more
14 years ago in Delphi, Delphi Programming, Object-Oriented Programming, pascal, programming0
Unknown
From the wishful thinking department, I would love to be able tovar Src: TSomeClass; MyObject : TBoundObject<Boolean>;begin MyObject.Bind(Src, CompilerMagic(TSomeClass.SomeBooleanProperty));end;instead ofvar Src: TSomeClass; MyObject : T… … Read more
14 years ago in bind, Delphi, generics, Wishlist0