Tagged Questions
Delphi 2010 is a specific version of Delphi. Delphi 2010 was released in August 2009, and is available as a standalone product or as part of RAD Studio 2010.
29
votes
6answers
2k views
Why should I care about RTTI in Delphi?
I've heard a lot about the new/improved RTTI capabilities of Delphi 2010, but I must admit my ignorance...I don't understand it. I know every version of Delphi has supported RTTI...and I know that ...
26
votes
16answers
7k views
Upgrade to Delphi 2010, or stick with Delphi 7 “forever”?
I am an individual user of Delphi, starting back in the early Turbo Pascal days. I have quite a bit of code developed over the years, but I have never sold software commercially or used it for ...
22
votes
2answers
610 views
Interchanging data with zend (multidimensional arrays)
I'm embeding PHP in my app (writen in Delphi 2010), using PHP4Delphi component to interface with php5ts.dll.
I guess my program acts as extension for the PHP (sapi module?) as it registers some ...
20
votes
18answers
2k views
What components and IDE add-ins do you install with Delphi?
After a clean install of Delphi, what components and IDE add-ins do you make certain that you install? What's your Delphi "rig"? Here's what I install after a clean installation:
Delphi 2007 / ...
16
votes
1answer
241 views
Which language elements can be annotated using attributes language feature of Delphi?
Delphi 2010 introduced custom attributes which can be added to type declarations and methods. For which language elements can a custom attribute be used?
The examples which I have found so far ...
16
votes
5answers
831 views
How hard is it to migrate a project from Delphi 7 to Delphi XE?
Our company have a software that has been in development for over 10 years, so there are some really dated stuff in there. It's still quite functional and everything, but I see the new features on ...
15
votes
2answers
221 views
When a class implements a descendant interface, why doesn't it automatically count as implementing the base interface?
What's the reason this won't compile?
type
IInterfaceA = interface ['{44F93616-0161-4912-9D63-3E8AA140CA0D}']
procedure DoA;
end;
IInterfaceB = interface(IInterfaceA) ...
14
votes
2answers
604 views
How and when are variables referenced in Delphi's anonymous methods captured?
This was prompted by How to compare TFunc/TProc containing function/procedure of object?, specifically by David's comment to Barry's question. Since I don't have a Blog to post this to I'm going to ...
14
votes
7answers
8k views
TThread.resume is deprecated in Delphi-2010 what should be used in place?
In my multithread application
I use TThread.suspend and TThread.resume
Since moving my application to Delphi 2010 I get the following warring message
[DCC Warning] xxx.pas(277): W1000 Symbol ...
13
votes
6answers
354 views
Setting multiple labels to transparent across 1.000 forms?
I skinned my software with Devexpress and I found that the labels were non-transparent causing them to have grey background.
There's just endless forms, so I was wondering whether there was a way to ...
13
votes
3answers
2k views
Is TDirect2DCanvas slow or am I doing something wrong?
While looking for alternatives to replace GDI, I was trying to test Delphi's 2010 TDirect2DCanvas performance in Windows 7.
I tested it by drawing a huge polyline using Direct2D and the result was ...
13
votes
2answers
528 views
Interfaces, Anonymous Methods and Memory Leaks
this is a constructed example. I don't want to post the original code here. I tried to extract the relevant parts though.
I have an interface that manages a list of listeners.
TListenerProc = ...
13
votes
4answers
609 views
Delphi: Prevent method names from appearing in exe
I am writting some class, that is for handling security in my exe (checking serials, trial date check etc). After I compile exe even in Release build with all debug and RTTI generation turned off, ...
12
votes
1answer
218 views
Implicit interface variables
I asked a similar question about implicit interface variables not so long ago.
The source of this question was a bug in my code due to me not being aware of the existence of an implicit interface ...
12
votes
5answers
288 views
Adding the same Object twice to a TObjectDictionary frees the object
Look at this code:
dic:=TObjectDictionary<Integer, TObject>.Create([doOwnsValues]);
testObject:=TObject.Create;
dic.AddOrSetValue(1,testObject);
dic.AddOrSetValue(1,testObject);
The code
...
12
votes
3answers
242 views
Delphi 2010 - property wizard or something similar, to avoid manual coding getters / setters
Is there any built in or external tool (wizard) to easily add class member (published field) with getters / setters?
adding each field requires me to write quite lot of code. Let's assume I need to ...
12
votes
2answers
462 views
Ugly “disabled” images of TMainMenu
Delphi 2010, Win32 VCL. I need to create a main menu for my application with the most standard look. TMainMenu looks nice in all Windows versions, the only bad thing is when it displaying images for ...
12
votes
2answers
910 views
Practical usage for Delphi's new RTTI - Attributes,Values
I found great explanation about the new RTTI in Delphi,but I don't understand one important thing about all I have read - Where can I use that?
What is it supposed to replace?
11
votes
1answer
2k views
What is TMonitor in Delphi System unit good for?
After reading the articles "Simmering Unicode, bring DPL to a boil" and "Simmering Unicode, bring DPL to a boil (Part 2)" of "The Oracle at Delphi" (Allen Bauer), Oracle is all I understand :)
The ...
11
votes
4answers
775 views
Can I write Windows drivers with Delphi 2010?
I've always heard that Delphi can do almost anything C++ can do...except write Windows drivers. Is this correct, and if so, why is that?
I recently read a blog post online that may indicate a ...
11
votes
2answers
261 views
D2010 compiled line count discrepancy
When building a project there are two places where source line count is reported:
On the compile progress dialog
Under Project | Information
In Delphi 2007 these two numbers were identical for the ...
10
votes
1answer
247 views
How to get all of the supported file formats from Graphics unit?
When any TGraphic descendant registering its own graphic file format with a class procedure TPicture.RegisterFileFormat(), they're all stored in Graphics.FileFormats global variable.
Too bad that ...
10
votes
6answers
1k views
Delphi 2010 RTTI : Explore Enumerations
Considering such an enumeration :
type
TTypeOfData = (
[XmlName('ABC')] todABC,
[XmlName('DEF')] todDEF,
[XmlName('GHI')] todGHI
);
Where XmlName is a custom attribute used to ...
9
votes
4answers
740 views
CharInSet doesn't work with non English letters?
I have updated an application from Delphi 2007 to Delphi 2010, everything went fine, except one statement that compiled fine but not working which is:
If Edit1.Text[1] in ['S','س'] then
...
9
votes
5answers
460 views
Better way to implement filtered enumerator on TList<TMyObject>
Using Delphi 2010, let's say I've got a class declared like this:
TMyList = TList<TMyObject>
For this list Delphi kindly provides us with an enumerator, so we can write this:
var L:TMyList;
...
9
votes
4answers
2k views
Is there any new ORM for Delphi 2010?
Delphi 2010 has new features regarding the RTTI, which I read it will make it easier for ORM tools and much cleaner code.
but I have not found any ORM incorporated these features.
Do you think the ...
9
votes
4answers
384 views
Why does line count change so much from D2007 to D2010?
Our app at work is a huge project with over 3000 units, weighing in about 3.5 million lines of code.
...or at least it was when we were compiling it under D2007. We recently updated to D2010, and ...
9
votes
9answers
7k views
Free Encryption library for Delphi
I'm looking for a free and up to date encryption library for Delphi 2010 that implements RSA and AES (Rijndael).
I want a free library because I plan to write and publish some sample code that will ...
8
votes
1answer
155 views
Delphi SVN integration that works with SVN 1.7?
I've just upgraded my SVN repository from 1.6 to 1.7. A major change to the repository format in 1.7 is that the ".svn" folders are no longer stored in each subdirectory; only in the root folder of ...
8
votes
4answers
260 views
Recommend a HTTP component for Delphi 2010 allowing Range'd downloads
Can you advice me a shareware HTTP component for Delphi 2010?
I want to use it as HTTP multithread .exe file downloader.
I.e. one big .exe file will be downloaded in several threads.
8
votes
2answers
295 views
How to add a checkbox to TSaveDialog in Delphi 2010
I want to add a checkbox or other VCL component to the TSaveDialog.
Cantu says,
The new Vista Open and Save dialog boxes (implemented by the IFileOpenDialog and
IFileSaveDialog ...
8
votes
1answer
794 views
How can a 32-bit program read the “real” 64-bit version of the registry?
I'm trying to read HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Run with OpenKeyReadOnly, and GetValueNames, but it's returning values from ...
8
votes
5answers
765 views
Delphi 2010 threads [closed]
Can someone post the simplest thread example for Delphi 2010 that for example puts some text into a memo when button clicked? With implementation and all. Thanks.
Update: Ok, just a simple thread ...
8
votes
4answers
650 views
Class methods in Record vs Class in Delphi 2010
I just started to play with the new unit in Delphi 2010 IOUtils.pas, and I found they put all the methods inside Records(TFile, TPath, TDirectory) as class functions and procedure.
Is there any ...
8
votes
1answer
122 views
Why does changing a runtime parameter cause a rebuild in Delphi 2010?
The title is fairly self explanatory. Whenever I do a build in Delphi 2010, if afterward all I change is the run parameter under Run -> Parameters, Delphi insists on rebuilding my application. In any ...
8
votes
1answer
830 views
Proxy server using Indy
I'm new to Indy and I want to build a simple proxy-server with it. This is a quite big library, and I just don't know where to start. When client connects to server, OnExucute fires up and receives ...
8
votes
9answers
2k views
Delphi 2010: How to save a whole record to a file?
I have defined a record which has lots of fields with different types (integer, real , string, ... plus dynamic arrays in terms of "array of ...").
I want to save it as a whole to a file and then be ...
8
votes
3answers
1k views
Borderless TForm with drop shadow
I have made a TForm derivative that acts like the drop down part of a combo, or a hint window, or a popup menu - a temporary thing. It has no caption - its BorderStyle is set to bsNone. The form is ...
8
votes
2answers
1k views
Is there a Boyer-Moore string search and fast search and replace function and fast string count for Delphi 2010 String (UnicodeString) out there?
I need three fast-on-large-strings functions: fast search, fast search and replace, and fast count of substrings in a string.
I have run into Boyer-Moore string searches in C++ and Python, but the ...
8
votes
4answers
558 views
Delphi 7 compared to 2009 (& 2010) Record sizes
I have a weird issue when converting code from Delphi 7 to 2010. It has to do with records. The record defined below, when sized in D7, is 432 bytes, and in D2009 (and 2010) it's 496. I know, that ...
8
votes
1answer
602 views
How to create an instance of object with RTTI in Delphi 2010?
As we all known, when we call a constructor of a class like this:
instance := TSomeClass.Create;
The Delphi compiler actually do the following things:
Call the static NewInstance method
to ...
8
votes
2answers
289 views
What's the syntax for including methods in a variant record?
I have the following record definition
E3Vector3T = packed record
public
x: E3FloatT;
y: E3FloatT;
z: E3FloatT;
function length: E3FloatT;
function normalize: ...
8
votes
3answers
990 views
TExternalThread, what the heck is it? “Cannot terminate externally created thread” when terminating a thread-based timer :/
This happens half of the time when closing my application in which I have placed a TLMDHiTimer on my form in design time, Enabled set to true.
In my OnFormClose event, I call MyLMDHiTimer.Enabled := ...
8
votes
2answers
1k views
How to “automatically” remove unused units from uses clause?
Does anyone know of a utility that can will automatically detect/remove unrequired units from the uses clause?
Preferably it can be run againt a unit and/or a project.
Preferably free and works ...
8
votes
2answers
3k views
TWAIN scanning components for Delphi
I need to add TWAIN scanning to an Delphi application and am having trouble locating an off-the-shelf component to do so.
I downloaded TDelphiTwain but, when used in D2010 on Windows Vista, it does ...
8
votes
6answers
752 views
Is Delphi 2010 ready for production use?
I am currently using Delphi 2006 a few days ago I downloaded a copy of Delphi 2010.
How stable is Delphi 2010?
Should I wait until the first service pack comes out before moving to this version?
...
8
votes
5answers
7k views
What is the compiler version for Delphi 2010?
In Delphi 2010, if I want to do this:
{$IFDEF VER999}
//some delphi 2010-specific code here
{$ENDIF}
What version # do I need to use in place of "999"?
7
votes
3answers
207 views
Creating an interface implementer instance at runtime
First, a little explanation about my situation:
I have a sample interface which is implemented by different classes, and these classes might not always have a shared ancestor:
IMyInterface = ...
7
votes
1answer
156 views
Delphi: Counting folders within a folder
Does anyone know a code I can use to count the number of folders in a specified directory?
7
votes
1answer
136 views
Delphi 2010 - weird behaviour using refactoring->extract methode
Im facing this issue when i try to extract a methode in the if statement. i couldnt find any reported bug on it.
procedure TForm1.BitBtn3Click(Sender: TObject);
var
x: integer;
b: boolean;
begin
...