Tagged Questions
Delphi 2009 is a reference to a specific version of Delphi. Delphi 2009 was released in August 2008, and is available as a stand alone product, or as part of RAD Studio 2009.
26
votes
7answers
2k views
EProgrammerNotFound exception in Delphi?
In Delphi 2009, SysUtils.pas contains this in line 425:
EProgrammerNotFound = class(Exception);
Is this simply an easter egg or something serious?
When should this exception be raised?
Does it ...
21
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 / ...
19
votes
4answers
2k views
Why is DoubleBuffered disabled by default?
After creating a new form, I usually perform this ritual:
Change the name into something meaningful;
Type a Caption;
Change the position property (DefaultPosOnly is hardly ever what users expect);
...
17
votes
3answers
4k views
Delphi MSBuild Build Configurations From Command Line
Delphi 2009 uses build configurations. When you create a new project you have two default build configurations "Debug" and "Release".
Now I asked myself how to automate builds using MSBuild (which is ...
16
votes
26answers
5k views
Will Delphi be there in future? [closed]
Yes, there is a version 2009. I know Delphi has a big community since years (10 plus)and I believe you could create native windows exe before Visual Basic got to speed (with all its dll's nighmare). ...
16
votes
5answers
2k views
Hooking a Stacktrace in Delphi 2009
The Exception class in Delphi 2009 received a number of new features. A number of them are related to getting a stacktrace:
property StackTrace: string *read* GetStackTrace;
property StackInfo: ...
15
votes
4answers
2k views
How Can I Best Guess the Encoding when the BOM (Byte Order Mark) is Missing?
My program has to read files that use various encodings. They may be ANSI, UTF-8 or UTF-16 (big or little endian).
When the BOM (Byte Order Mark) is there, I have no problem. I know if the file is ...
14
votes
4answers
4k views
How do I make a PNG resource?
I've got a form with a large TImage on it as a background. Problem is, this is stored directly in the DFM as a bitmap, which takes up about 3 MB. The original PNG file is ~250K. I'd like to try to ...
13
votes
4answers
12k views
Converting TMemoryStream to String in Delphi 2009
We had the following code previous to Delphi 2009:
function MemoryStreamToString(M: TMemoryStream): String;
var
NewCapacity: Longint;
begin
if (M.Size = 0) or (M.Memory = nil) then
Result:= ...
13
votes
2answers
1k views
Any information on a Turbo Delphi 2009 release?
Individually, the Turbo Delphi releases and the new improvements added in Delphi 2009 are two of the best things that have happened to Delphi in a long time. But currently you can only get one or the ...
13
votes
5answers
3k views
Why is CharInSet faster than Case statement?
I'm perplexed. At CodeRage today, Marco Cantu said that CharInSet was slow and I should try a Case statement instead. I did so in my parser and then checked with AQTime what the speedup was. I found ...
12
votes
9answers
1k views
Is there, or is there ever going to be, a conditional operator in Delphi?
I kept my hands off Delphi for too long, I guess; busied myself with Java and PHP a lot over the last couple of years. Now, when I got back to doing a little Delphi job, I realised I really miss the ...
12
votes
18answers
1k views
Recommendation needed for good database for Delphi desktop app
I am creating a desktop application written in Delphi and
I am looking for a database for my application.
I'm a bit overwhelmed by the number of available options.
I'd really appreciate some ...
12
votes
4answers
2k views
Which variables are initialized when in Delphi?
So I always heard that class fields (heap based) were initialized, but stack based variables were not. I also heard that record members (also being stack based) were also not initialized. The ...
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
3answers
630 views
Why do interface implementations based on TComponent leak memory?
This Delphi code will show a memory leak for an instance of TMyImplementation:
program LeakTest;
uses
Classes;
type
MyInterface = interface
end;
TMyImplementation = class(TComponent, ...
11
votes
6answers
861 views
TLinkLabel background on a TPageControl
I am trying to use a TLinkLabel on a TPageControl, and I can't find a way to make it use it's parent's background.
So, in XP, I get this:
As you can see, the parent tab sheet's lovely gradient is ...
11
votes
11answers
1k views
How to increase the startup speed of the delphi app?
What do you do to increase startup speed (or to decrease startup time) of your Delphi app?
Other than application specific, is there a standard trick that always works?
Note: I'm not talking about ...
10
votes
5answers
291 views
How to implement thread which periodically checks something using minimal resources?
I would like to have a thread running in background which will check connection to some server with given time interval. For example for every 5 seconds.
I don't know if there is a good "desing ...
10
votes
6answers
2k views
Best Delphi Regex library
I am searching a pure Delphi library with good full-Perl syntax support.
It should:
match groups (both named and numbered)
be able to match, replace, split
support look-ahead and look behind
come ...
10
votes
2answers
607 views
Delphi 2009 where is the 'treat warnings as errors' option?
In Delphi 2009 whereabouts do you turn on the option to treat warnings as errors?
9
votes
1answer
586 views
Windows 7 - Displaying “Access denied” message when user tries to save file to a protected folder rather than save in virtual store
We want to restrict files being saved to the virtual store in Vista/Windows 7 if the user tries to save files from our application to a protected folder such as "Program files" - we want an "Access ...
9
votes
1answer
1k views
Step by step upgrade of Indy 10 in Delphi 2009
Can someone help in telling the details on how to uninstall Indy 10 and install the latest build? I found it http://indy.fulgan.com/ZIP/IndyTiburon.zip
There is a similar question, but not a ...
9
votes
2answers
4k views
External Exception EEFFACE in Delphi
While debugging my application with Delphi 2009, I sometimes get the following exception occurring:
This only happens occasionally, but after pressing OK, then my IDE and program both may freeze. ...
9
votes
6answers
421 views
Need xml component supporting D2009
I'm looking for a xml component/Library which supporting Delphi 2009.
Thanks!
9
votes
5answers
2k views
D2009 TStringlist ansistring
The businesswise calm of the summer has started so I picked up the migration to D2009. I roughly determined for every subsystem of the program if they should remain ascii, or can be unicode, and ...
9
votes
1answer
326 views
Interfaces with Generics - Setting to NIL
I am trying to implement clear in the following example code in Delphi 2009.
interface
...
TFoo<T : IInterface> = class(TObject)
FField : T;
procedure Clear;
end;
...
implementation
...
8
votes
0answers
157 views
Is there a way to programmatically tell if particular block of memory was not freed by FastMM?
I am trying to detect if a block of memory was not freed. Of course, the manager tells me that by dialog box or log file, but what if I would like to store results in a database? For example I would ...
8
votes
1answer
270 views
In Delphi, what does System.TMonitor.Pulse and TMonitor.PulseAll actually do
I was very pleased to see Delphi introduce the TMonitor record in Delphi 2009, permitting you to lock specific objects in a multithreaded environment. What has puzzled me is the Pulse and PulseAll ...
8
votes
1answer
313 views
Is Delphi 2009 wait chain traversal available in Windows 7 installations?
According to the "What's New in Delphi 2009," there is a new debugger features called "wait chain traversal." It specifically says "A Wait Chain Traversal feature has been added to help you resolve ...
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
7answers
2k views
Faster DirectoryExists function?
I use
DirectoryExists (const PathName : String);
to check if a directory is reachable from a computer or not. But if the directory does not exist and the path name is a network path, i.e.
...
8
votes
2answers
498 views
Are Generics in D2009 usable in large projects?
I'm pretty frustrated. I'm using Delphi 2009 and was very happy about the inclusion of generics in this version of Delphi. Everything worked great at the beginning, but now that I use generics all ...
8
votes
2answers
542 views
How does one create Microsoft Management console(MMC) snap-in in Delphi 2009?
Are there an wizard or templates in delphi 2009 to write a MMC console ?
EDIT:
Colin Wilson components look great thanks.
8
votes
5answers
1k views
Process for localization of Delphi 2009 app by volunteer translators?
I have a freeware scientific app that is used by thousands of people in nearly 100 countries. Many have offered to translate for free. Now that D2009 makes this easier (with integrated and external ...
8
votes
5answers
354 views
Why is the executable produced by Delphi 2009 IDE different to that produced on the command line?
I'm producing builds using MSBuild, and build configurations set up in the dproj on the command line. It's slightly disconcerting that the size of the executables thus produced are different (not by ...
8
votes
4answers
450 views
Is It Time To Rethink The Delphi Help File System?
The majority of components available for Delphi do not have HTML Help files for Delphi 2009. Many components including some very popular commercial components only have HLP and CHM help files.
Many ...
8
votes
3answers
2k views
Delphi 2009 COM/ActiveX Type Library support stability
Referring to TLB and maintenance issues ...
My question to people (often) using the new COM/ActiveX type library support in Delphi 2009:
How stable is the implementation?
Especially, I'm interested ...
8
votes
2answers
1k views
How can I make Delphi 2009 open my application in the second monitor by default?
When debugging I always want Delphi to open my application in the second monitor but it always open in the first one, I know I can save the application placement before closing but I want it to always ...
8
votes
10answers
3k views
What are major incentives to upgrade to D2009 (Unicode excluded)?
I'm a hesitant upgrader when it comes to development tools. For roughly half of my product I still use D7, and for others D2006.
The truth is, although Unicode support is more than welcomed and very ...
8
votes
5answers
4k views
Delphi TThread.CurrentThread and EAccessViolation - Is This a Bug or My Incompetence..?
In Delphi 2009 I'm finding that any time I use TThread.CurrentThread in an application, I'll get an error message like the following when the application closes:
Exception EAccessViolation in module ...
7
votes
3answers
247 views
pass unlimited number of paramters to procedure
in Delphi the procedure write can handle:
write(TF,st1)
and
write(TF,st1,st2,st3,st4);
I want to declare a procedure that can also do that, what is the syntax?
and the option of:
...
7
votes
4answers
565 views
Recognizing text from a picture in delphi
i need an advice on how to approach this problem. I have some picture data: *.jpg, *.bmp ... and i need to extract the data from it. The data is alphanumeric text. I work in delphi.
7
votes
7answers
581 views
The reasons to upgrade from Delphi 2009
I have made the question "community wiki" - it is subjective.
I have upgraded to Delphi 2009 because of unicode support. I have found the anonymous methods a very interesting and useful language ...
7
votes
2answers
380 views
How to properly access query-results created in background thread?
I want to execute a database query in a background thread. The OmniThread library will help me with all the thread stuff, but there is one thing I don't understand so far:
Every thread needs a ...
7
votes
5answers
680 views
Delphi and i18n
Does Delphi support internationalization in any way?
I've seen that I can add different languages for a project, but that seems to create multiple instances of the dfm files. Am I right that the ...
7
votes
2answers
520 views
Getting Allen Bauer's TMulticastEvent<T> working
First Question! :)
I've been mucking around with Allen Bauer's code for a generic multicast event dispatcher (see his blog posts about it here).
He gives just enough code to make me want to use it, ...
7
votes
4answers
3k views
How to get a stack trace from FastMM
I've noticed in this post that you can get stack trace out of FastMM to show what appears to be where the object was allocated.
...
7
votes
5answers
1k views
Fade all other windows of an application when a dialog is shown?
How to dim / fade all other windows of an application in Delphi 2009.
Form has an AlphaBlend property, but it controls only transparency level. But it would be nice if we can have something like ...
7
votes
1answer
662 views
Why doesn't THashedStringList ignore duplicates?
I have the following code:
var
sl: THashedStringList;
begin
sl:= THashedStringList.Create;
sl.Duplicates := dupIgnore;
sl.Add('12345');
sl.Add('12345');
sl.Add('12345');
...