5
votes
D2009 VCL unit that won’t compile.
Does it help if you add the following line at the top of the DB.pas unit.
{$A8,B-,C+,D+,E-,F-,G+,H+,I+,J-,K-,L+,M-,N-,O+,P+,Q-,R-,S-,T-,U-,V+,W-,X+,Y+,Z1}
If it works after using th …
10
votes
How can I make Delphi 2009 open my application in the second monitor by default?
Delphi doesn't have his feature.
What I do is to add code to the OnCreate handler of the main form that moves the form to the second monitor if the Delphi-Debugger is attached to the applic …
12
votes
Delphi 2009 OnKeyDown does not trap as Delphi 2007 does
Are you sure that this worked in Delphi 2007? I just tried the code in Delphi 2007 and 2009. And both behave the same (No key stroke is eaten) If you want to accept only digits you should use the O …
11
votes
Interfaces with Generics - Setting to NIL
Instead of nil you must use the new Default(T) which returns the default value for the generic parameter type. And for interfaces it is nil
pr …
3
votes
DeCAL and Delphi 2009
Here is a DeCAL version that works with Delphi 2009.
http://cc.embarcadero.com/Item/26159
There is also a rewrite of DeCAL …
10
votes
How can I cast an object to a generic?
I'm using a typecast helper class that does the typecasts and also checks if the two classes are compatible.
class function TPersistGeneric<T>.Init: T;
var
o : TXPersistent; …
