Archive for November, 2005
Part 1: Initialized global instance variables
Now you can declare initialized global instance variables and constants of class types in the Delphi for .NET Language! Not supported in Delphi for Win32. WARNING! As this is undocumented, it may not be supported in future releases. var Button: TButton = TButton.Create(nil); Supported since Delphi 8? Tested on Delphi 2005 and Delphi 2006. Here’s a […]
Posted by Chee Wee, Chua on November 23rd, 2005 under Undocumented Delphi for .NET | 9 Comments »A presentation…
Given that everyone seems to be at the conference, except me :`(, I thought it appropriate to share this.
Share This | Email this page to a friend
The return of Web Deploy?
I’ve been spending quite a bit of my personal time tinkering with returning the Web Deploy functionality as a plugin for Delphi 2005 recently. I have been given some hints, and in addition, I’ve taken a look at the APIs located at MSDN: Overview of Type Compilation and Library Functions . With these information, I think […]
Posted by Chee Wee, Chua on November 10th, 2005 under Delphi | 7 Comments »Part 1: What’s wrong with this code?
If used as is, in a simple console project, what’s wrong with the unit code below? What is/are the problem(s) that you can find in the code below? unit WrongCodeImpl; interfaceimplementationtype TWrongCode = class public constructor Create; destructor Destroy; override; end; var WrongCode: TWrongCode; constructor TWrongCode.Create;begin inherited Create; // Do something hereend; destructor TWrongCode.Destroy;begin WrongCode […]
Posted by Chee Wee, Chua on November 3rd, 2005 under Delphi | 28 Comments »Server Response from: dnrh1.codegear.com

RSS Feed