What sort of minor annoyances do you run into using Delphi? I'm not looking for major issues such as "I want a 64-bit compiler." Just little things that can be easily worked around but still should have been implemented better so you don't have to work around them?

Marking this CW. I'm more interested in the answers than the points.

link|improve this question
7  
Please add QC numbers where available in the comments for these to make it easier for us to investigate. – David Dean Jan 23 '10 at 0:13
2  
@David: I suppose a lot will depend on how much the answer is nitpicking or just a "minor annoyance". For example, my answer about the silly default public and private section comments really is minor nitpicking. Also, with reference to Cruachan's answer stackoverflow.com/questions/2112729/biggest-delphi-nitpicks/… - I really don't see you guys fixing (read removing) the with construct. – Craig Young Jan 24 '10 at 18:22
5  
@Craig, even if it is minor nit-picking, we should track them. If someone is working in that area, can do a quick query, and see: "Hey, I can get to that issue too since I'll be working on that code anyway" And although we most like won't be removing with from the language, we can add tools that make it easier to work with, such as a remove with refactoring, or having code insight give you and indication of what variable is being used deep into a nest of withs, so even a suggestion like that can still be useful to track and mold into something useful. – David Dean Jan 24 '10 at 20:44
feedback

closed as not constructive by BoltClock Mar 27 at 6:08

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

73 Answers

1 2 3

Definitely the buggy Error Insight!

alt text

I guess anybody who uses a D2005 or newer knows this bug... you are writing code that compiles well but Error Insight tells you it can't resolve a unit name or you use an undeclared identifier etc...

This bug still exists in Rad Studio 2010! Unbelievable (I am experiencing it right now)!

To the shame of Borland/Codegear/Embarcadero/ (funny thing, this bug survived every sale :D ) a third party developer managed to fix this bug... Who doesn't know Andreas Hausladen?

Edit: This seems to be #QC33546 (the first one I found, but I bet this has been reported more than once)

link|improve this answer
5  
Also, OleVariants using named parameters for late-bound COM, like msw.Selection.MoveRight(Unit := wdCell); I wish there were a directive to tell Error Insight not to try to parse certain sections, something like {$ERROR_INSIGHT OFF} – jasonpenny Jan 21 '10 at 21:40
4  
For the record, there is a reason that Andreas is able to fix these things -- we work very, very, very closely with him and he has access to things most developers don't. – Nick Hodges Jan 21 '10 at 23:19
4  
And I really appreciate that! Anyhow, official fixes are much more appreciated ;-) – Mef Jan 21 '10 at 23:38
11  
@Nick: The implication isn't that Andreas is somehow a smarter programmer because he can fix a bug while we can't. The implication is that Embargadero's own developers can't fix a after 3 major versions, while an outside developer can. – Ian Boyd Jan 21 '10 at 23:51
8  
Gotta agree with Ian on this. If you can feed Andreas special information that helps him develop these fixes, why doesn't the "inside access" conduit seem to go both ways and end up with those fixes showing up quickly in updates and new versions? – Mason Wheeler Jan 21 '10 at 23:58
show 6 more comments
feedback

Not having UNDO in the forms editor. Can't believe nobody else mentioned that!

You play a bit with the controls in the forms editor, move them here, move them there, then click undo, then move them elsewhere... oooops... did I say "undo"? What's that? Not something you'll use in Delph Forms Editor.

I vote for UNDO to be removed from Notepad, Visual Studio and Photoshop as well. If you screw up your form, just make it again from scratch. That's the way to design forms in 21st century.

link|improve this answer
show 2 more comments
feedback
  1. Ctrl+Click
  2. Nothing happens
  3. Goto 1
link|improve this answer
4  
I think that this fails for the same reason that the error insight fails (see way up top of this post). Both rely on a flawed parser that works on your tiny demo apps (ergo no small test cases to report) but don't work on your big applications. – Warren P Jan 22 '10 at 14:01
9  
This. You trashed my disk, killed my train of thought by blocking the GUI for seconds and you come back empty handed! At least say you're sorry :) – utku_karatas Jan 27 '10 at 4:03
feedback

I simply want a CASE statement working with anything and not just ordinal types !

link|improve this answer
2  
There have been several times when I've wanted to use CASE on class references or set values. Strings, not so much. Maybe I'm just weird that way. :P – Mason Wheeler Jan 22 '10 at 1:55
3  
I would hate this if it was ever changed in a way that decreases the efficiency of the current case system. If the compiler had extra code to generate a sequence of if then else statements behind the scenes, I guess that would be fine. – Warren P Jan 22 '10 at 13:58
3  
@warren - I don't see why the compiler can't optimise to the current system for ordinals and something else for other cases (no pun intended) – Mike Sutton Jan 22 '10 at 17:43
3  
I care, for two reasons. It would be easier to write, and easier to debug. – Mason Wheeler Jan 23 '10 at 12:54
2  
How about adding it to GENERICS, e.g: Case<type> – lkessler Apr 1 '10 at 13:25
show 6 more comments
feedback

The IDE removing {$ifdef} statements and units from the unit list in the dpr file.

This is especially painful with a large dUnit "test" project I work on. The project (which I've inherited) includes a number of unit, integration and regression tests. I don't want my CI server to run the regression tests every time somebody checks in code, so I use {$ifdef}/{$endif} statement around the units. FinalBuilder then defines that conditional before building the project.

If the item is not currently {$defined}, Delphi will remove ALL of the units between the {$ifdef} and {$endif} whenever a unit is added to the project.

If the value is {$defined}, Delphi will remove the {$ifdef} and {$endif} statements from the unit list, but all of the units will be kept.

link|improve this answer
1  
Hmm interesting problem; perhaps there's a workaround you can try... Hopefully the IDE won't remove a {$include}; then then you can move all that code ({$idef}, {$endif} included) into a separate file that the IDE won't know to even consider fiddling with. – Craig Young Jan 22 '10 at 11:37
1  
I get hit with this all the time. The two-way-tools (form designer code that rewrites your unit .pas and project .dpr interface sections) are not aware enough of IFDEFS – Warren P Jan 22 '10 at 14:03
6  
Well, there are two ways for the tool to deal with that situation. "I don't know what this is. Must not be important. I'll throw it out!" Or, "I don't know what this is. Must be important! I'd better not touch it." Not sure why the Delphi team chose the wrong method... – Mason Wheeler Jan 25 '10 at 15:00
feedback

One of my biggest nitpicks is the help file. I almost never have a satisfying answer and need to search further. Hopefully it will get better.

link|improve this answer
3  
The "delphi basics" help file would be a much better place to start than even their latest Delphi 2010 help, which is improved from 2009, but still nowhere near "good" – Warren P Jan 22 '10 at 14:04
8  
Delphi help is called "Google"! – Loren Pechtel Jan 23 '10 at 0:52
2  
I have given up on the Delphi help long time ago, I found it more or less useless. Instead I use ref.dp200x.de frequently – Joe Meyer Jan 24 '10 at 8:05
1  
I'm so with you... Damn I miss Delphi 7 help files! – AlexV Feb 15 '10 at 21:25
1  
Delphi 7 help files where really useful. The new help system is crap. – BloodySmartie Oct 10 '10 at 14:30
show 4 more comments
feedback

No regex support. I would love to have regex support in the IDE using a modern regex flavor and in the language without having to look for third parties components, DLLs and such.

Update: Delphi XE now has TRegEx in the language.

link|improve this answer
3  
The IDE has supported regular expressions for many years. – Rob Kennedy Jan 22 '10 at 0:03
1  
No, Ian, the language and provided library have never supported regular expressions. That part of Averroes's complaint is valid. – Rob Kennedy Jan 22 '10 at 6:42
4  
There are many third party regex libraries. This is a library not a language issue. One may as well say that barcode scanning libraries, movie rating systems, and twitter feed readers should be built in. – Warren P Jan 22 '10 at 13:58
1  
@Rob, i was pointing out the other half of the answer, i.e. "in the language". You pointed out that the IDE has regex (searching) - i thought you missed the "in the language" part. – Ian Boyd Jan 22 '10 at 21:36
4  
I'm the author of TPerlRegEx. I've been having some discussions with Nick Hodges on this issue. There's hope that Delphi's regex support will be improved someday. – Jan Goyvaerts Jan 31 '10 at 2:50
show 3 more comments
feedback

The default comments in new form classes for the public and private sections.

What a waste!! And what a terrible example of how to use comments!!

Please stopit!!

link|improve this answer
1  
CodeCompletion[tm] inserting procedure declarations above these comments make them look even more funny – mjn Jan 23 '10 at 12:13
6  
I agree, I don't need some compiler telling me where to put my private members. – Peter Turner Jan 25 '10 at 22:01
6  
You know what? I agree. I'll see about making those go away. – Nick Hodges Feb 11 '10 at 7:08
1  
i always found them useful. They were great when i was learning Delphi 14 years ago. Now they remain as a nice bit off commenting; tricking developers into organizing their code nicely. And it takes zero effort to delete the line if you don't like it. -1 – Ian Boyd Mar 5 at 14:08
show 1 more comment
feedback

I hate that control-clicking something doesn't take you to its declaration when debugging.

link|improve this answer
show 1 more comment
feedback

Resource compiler's inability to handle "Vista-style" icons.

Not that Microsoft is blameless. After two iterations of Visual Studio you still can't include a png compressed icons.

link|improve this answer
show 4 more comments
feedback

Packages

  • Design time packages
  • Runtime packages
  • DsgnIntf.dcu not found
  • File not found: 'DesignIntf.dcu'
  • having to even install packages

Visual Studio you just have a Component in your project, and it's available on the tool pallet.

link|improve this answer
2  
Yeah, the whole concept installing packages to get components is yet another hint of why the IDE feels so cheaply done. Why can't it infer the components from your project and present them in the IDE in the version that you have in your project? – Robert Giesecke Jan 22 '10 at 6:46
2  
The experience with resolving problems with packages when two packages have had implicit declarations of units is harder than actually writing the code. – lungic Jan 22 '10 at 7:25
6  
I don't want the design time support in my runtime code base. I like the current solution. – Robert Love Jan 25 '10 at 15:08
show 3 more comments
feedback

WITH

Without a doubt :-). With is pretty evil as it leads to confusing and hard to maintain code. Of course one never uses it oneself, and undoubtedly it should be classified as a language feature you should never use, but it tends to pop up far to often in code examples, particularly for beginners who then use it liberally only to learn from experience later that this is not a good idea. OK it's a Pascal thing, but it could, should, have been dropped.

I spent a decade coding Delphi pretty intensively from version 1.0 (and I used to use Turbo Pascal too) up to 7 when I largely moved elsewhere, and in that whole time I think I found one single occasion when I needed a with to pass a pointer to the correct member of a very complex structure to a function.

link|improve this answer
14  
Change the frikkin record. "with" is useful. No-one forces you to use it, what gives you or anyone else the right to force people to stop using it who have learned the self discipline to use it safely and usefully (it can be done) ? What next? Remove "pointers"? Hell, remove the inline assembler... when it comes to "dangerous" and abusable language features.. it doesn't get more dangerous than that! – Deltics Jan 21 '10 at 23:07
21  
with makes debugging impossible, since the IDE doesn't know what variable you're hovering over. – Ian Boyd Jan 21 '10 at 23:56
30  
Seems to me that's an argument for improving the debugger, not for removing a language feature. – Craig Peterson Jan 22 '10 at 1:14
11  
The debugger not being able to understand it is just another nail in the dead horse. The real reason for the nitpick is that with code is hard to read. – Ian Boyd Jan 22 '10 at 3:59
14  
I would love a "Remove all WITH statements from this code" refactoring, ie, "make everything explicit". – Warren P Jan 22 '10 at 13:59
show 19 more comments
feedback

I hate it when I open a project form and it wants to delete components on my form because Delphi IDE doesn't care about helping me keep my packages installed and up to date.

A much better solution would be for project files to declare their dependency on a particular set of components, by name, and then having the ability to search the installed component set, and find all missing component names, and install the components that are missing.

Imagine that beside each myproject.dproj file there was a myproject.d14_pkg file, and any time that a component is added to a form in my project, the bpl and dcp files are added to that .d14_pkg file (seven zip format). Then when you open your project folder on another computer where that bpl and dcp file are missing, the project will auto-install the bpl and dcp files into their required working locations, and your form opens.

link|improve this answer
show 1 more comment
feedback

Circular References

There's no reason why you can't get rid of this problem.

Any explanation for it's existence includes, "because the compiler..."


Circular Reference Example

Customer.pas:

unit Customer

uses
    Invoice;

type
   TCustomer = class(TObject)
   public
      ...
      procedure SetMyselfFromInvoice(Invoice: TInvoice);
   end;

Invoice.pas

unit Invoice

uses 
   Customer;

type
   TInvoice = class(TObject)
   public
      ...
      procedure SetCustomer(Customer: TCustomer);
   end;

Workaround #1

Declare both types as TObject in the interface section, and do a checked cast at runtime to ensure it's what you want:

procedure GetMyselfFromInvoice(Invoice: TObject{TInvoice});
procedure SetCustomer(Customer: TObject{TCustomer});

Workaround #2

Strand one object, not making it away of the other:

   TCustomer = class(TObject)
   public
      ...
   end;

   TInvoice = class(TObject)
   public
      ...
      procedure SetCustomer(Customer: TCustomer);
      procedure UpdateCustomerFromMyself(Customer: TCustomer);

   end;

Workaround #3

Strand the other object, not making it away of the other:

   TCustomer = class(TObject)
   public
      ...
      procedure SetMyselfFromInvoice(Invoice: TInvoice);
      procedure SetInvoiceCustomer(Invoice: TInvoice);
   end;

   TInvoice = class(TObject)
   public
      ...
   end;

Workaround #4

Merge two units into one large unit:

Everything.pas:

unit Everything

type
   TInvoice = class; //forward

   TCustomer = class(TObject)
   public
      ...
      procedure SetMyselfFromInvoice(Invoice: TInvoice);
   end;


   TInvoice = class(TObject)
   public
      ...
      procedure SetCustomer(Customer: TCustomer);
   end;

Workaround #5

Use the TPersistent/Assign anti-pattern:

   TCustomer = class(TPersistent)
   public
      ...
      procedure Assign(Source: TPersistent);
   end;


   TInvoice = class(TPersistent)
   protected
      procedure AssignTo(Dest: TPersistent);
   end;

Workaround #6

Use a separate helper class:

CircularReferenceFixer.pas:

unit CircularReferenceFixer

uses
   Invoice, Customer;

type
    TCircular = class(TObject)
    public
       class procedure CopyCustomerInfoToInvoice(
            Customer: TCustomer; Invoice: TInvoice);
       class procedure SetInvoiceCustomerInfoFromCustomer(
            Customer: TCustomer; Invoice: TInvoice);
   end;
link|improve this answer
6  
You're discounting the reason, and it's a very valid reason. A single-pass compilation structure is what allows Delphi to build large projects like the one I work on at work in minutes instead of hours, which is what it would take under C++. – Mason Wheeler Jan 22 '10 at 0:13
1  
i'm curious to hear more, Mason. – Ian Boyd Jan 22 '10 at 0:45
19  
Multi pass compilation does not mean compile times like C++. C# is capable of resolving non-local identifiers regardless of the order in which they were declared. And it is not much slower than Delphi. (Considering that a build in C# involves more than just building, it involves running codegens like the one for edmx, xml-resources etc as well.) Single-pass should be considered some horrific memory from the dark ages, yet some poeple will cling to it as if it were something good. Kinda like stockhom syndrom for programmers... – Robert Giesecke Jan 22 '10 at 5:55
4  
What you are referring to, is the fact, that Delphi can link already compiled DCUs into your binary. It is not much faster than C# for a rebuild. I do not need instantaneous compilation in C#, though. Because I got ReSharper, which picks issues up without the need of compiling it first. However, the difference in speed is IMO not remotely as remarkable as to allow such a draconian burden/limitation as single-pass compilation is. – Robert Giesecke Jan 22 '10 at 12:58
6  
I think that circular references being not allowed in the interface section forces you to think about your design, and prevents all kinds of nasty breakage of encapsulation. We need more limits on the knowledge of one unit's interface from anothers, not less, and less internal knowledge of one unit from another, not more. It is good to maintain interface/implementation single-pass semantics. – Warren P Jan 22 '10 at 14:09
show 10 more comments
feedback

I keep mentioning this (it's in QC etc) and I hope that one day, someone in the IDE team will take pity on me. I'd REALLY REALLY REALLY like to be able to change the colour of the red wavy-underline error-insight marker.

I'm colourblind and struggle to see the underline on anything other than a white-background, really. With all the other customisations possible in the IDE, not being able to change this particular element is remarkably frustrating - especially because most of the time, the error-insight marker is damn useful!

I've voted up various other answers here that I agree with - I don't know if I have the latest and greatest hacks for the help files, but the help system is very frustrating in D2007 - so much useless boilerplate Microsoft stuff, auto-generated rubbish that doesn't tell you anything of any value. I've bought D2010 but not yet used it in anger so don't know if this is something they've already improved. :-)

Edit: In QC, 61780 and also 27135 (related)

link|improve this answer
1  
I just upvoted QC 61780. I'm not colorblind but both my boys are. – Cape Cod Gunny Aug 2 '11 at 22:05
show 2 more comments
feedback

Let embarcadero look what's cooking in the community and don't reinvent the wheel. If there is something nicely implemented in the community, contact the owner and use it.

Let all of the elements of Delphi be documented. Undocumented elements doesn't exist.

And I'm sorry but please hire a marketing & image company immediately.

link|improve this answer
4  
But I don't want to buy Castalia, and five other plugins. On the other hand, I find the refactoring tools and the error insight (lint) style features in the IDE so crappy that I use third party tools. In other words, sometimes a feature is well done and sometimes a new Delphi IDE feature is a weak attempt to replace a third party tool that works with one that doesn't. – Warren P Jan 22 '10 at 14:02
feedback

All controls on a form should be private by default.

Controls on a Delphi form always have published visibility, and this can not be changed, because streaming from/to DFM requires it. But IMHO it violates the Encapsulation / 'Information Hiding' principle, and also floods us with information: if a developer types Form1., the IDE will present her a list with all controls, when she only wants to see one (or two) public methods to show and execute the form. Update: let's call these published properties 'Unsolicited (SPAM) properties' ;)

link|improve this answer
3  
+1! The amount of abuse I've seen from this over the years is epic. – afrazier May 7 '10 at 16:07
show 3 more comments
feedback

Disappearing of the "blue dots" in the code editor after an application is ran under the debugger. Have to compile again to see them again, even when the source is not modified.

This is with D2007 though, maybe it has changed.

link|improve this answer
2  
Still happens to me in Delphi 2010. Also when I edit breakpoints, or set or clear breakpoints, I find the displayed code gets out of sync easily with the debugger, and I find that breakpoints "move" on me, and become useless, a lot. – Warren P Jan 22 '10 at 14:10
feedback

One that just bugs me is SysUtils.StringReplace. The last parameter ought to be declared with a default value of [].

link|improve this answer
7  
i don't think i've ever passed anything besides [rfReplaceAll] – Ian Boyd Jan 22 '10 at 0:07
4  
Sounds like a good place to write your own MyStrUtils. :-) I've been cultivating one for years and it has dozens of great little functions in it. StringReplaceAll( blah,blah), versus StringReplaceFirst() – Warren P Jan 22 '10 at 14:05
show 1 more comment
feedback

My biggest nitpick is the inability for the editor/debugger to sync properly when a file containing non standard CR+LF line delimiters is loaded. Unfortunately, some of the tools used to edit code do not generate the proper line endings. When a file with mismatched line endings is loaded and compiled, the blue instruction marks while debugging do not line up with the proper line of code....this makes setting break points difficult.

The solution is to save the file and reload using something like Notepad+ to convert the non-standard line endings to normal CRLF ones, then reload AND recompile the project. This unfortunately takes more time for something that should be corrected in the IDE.

(this weeks blog entry by Jeff Atwood covered this exact issue, or at least the history of why it is one).

link|improve this answer
feedback

^Click browsing of the code usually brings you to the the wrong place (often the end of the file). it was broken in delphi 2005 and even in 2009 (haven't tried 2010).

in delphi 2009, they added a new bug--when it's busy in code completion, it often "eats" keystrokes. when it's busy you better stop typing since it's not listening anyway. mix that with slow code completion, and you have a real recipe for irritation.

one other thing--the TRibbon control is rather frail & hard to work with. i've had corrupted form files and plenty of time trying to figure out how to get the designer to let me edit/add/move something.

refactoring to add/remove parameters tends to destroy the code.

i sure wish the TActionManager showed more than just caption! how about Name, Caption, Icon, Catogory? some sorting ability sure would help too.

link|improve this answer
2  
The click browsing problems are IMO just one more symptom of this archaic concept of search path, browsing path and what-not path... – Robert Giesecke Jan 21 '10 at 23:20
show 3 more comments
feedback

An array defined with no defined boundaries but an initializer containing n elements such as

Foo array [] of int = {0, 2, 3, 4};

should compile and default to [0..(n-1)]

And by extension,

Foo array [5..] of int = {0, 2, 3, 4};

should default to [5..8]

link|improve this answer
show 2 more comments
feedback

Making class completion better in order to change parameters in a method.

Press Ctrl+shift+c and the method will be corrected in the class. (and vice versa if you are in the class, it should be corrected in the implementation.

link|improve this answer
feedback

When debugging, I use the Evaluate/Modify (Ctrl+F7) dialog a lot, and would like to see a simple extension : Actual type evaluation.

Let me explain; Up until now, when evaluating a variable of some class-type, I have to play out this scenario:

After I invoke the dialog with Ctrl+F7, I have to :

  • Focus the 'Expression' edit box (either by mouse, or with Alt+E)
  • Append ".ClassType" to the variable name
  • Press 'Evaluate' (either by mouse, or with Alt+V)
  • Focus the 'Result' box (either my mouse, or with Alt+R)
  • Select and copy the shown type into the clipboard (either my mouse, or with Ctrl+C)
  • Focus the 'Expression' edit box again (you'll know how by now)
  • Paste that before the variable (Ctrl+V)
  • Put parenthesis around the variable and remove the ".ClassType" part again

Only after these (easily automated) steps, I get to see the actual type in all it's detailed glory. And that with a mere 26 keystrokes! (If I counted them right, I could be off a few) ;-)

You'll understand this has become very tedious, and it would be my #1 improvement to Delphi.

PS: The same functionality should be added to the watches, local variable and object-inspector views too.

link|improve this answer
show 1 more comment
feedback

I upgraded to Delphi 2010 in December but really tried it just a week ago.

I haven't done much work in Delphi for years and then only in D7, which had been a crass historical touch regarding the tool set and editors I've grown accustomed to in .Net every time I used it over the recent years.

So, I did have high hopes for 2010, especially since everyone was raving about it.

Well, new project -> intellisense for units not working properly. (Wouldn't provide me with the generics.* unit names or StrUtils, .. )

I thought, well, they must have figured out how to get rid of those unnerving search paths, mustn't they? So, I created a package and an application and then told Delphi, that the exe will require the package (not as runtime pck, just the build thingy) Now, I thought I might just be able to use the units of the package in my exe without having to tinker with either search paths (yuck!) or adding the code files to the exe project as well. I had to use add the search path...

Okay, they added all this RTTI, debug visualizers, etc and I read somewhere how much improvement that gave to the debugging experience... So, simple console app, created a TDictionary<String, SomeSampleClass>, checked out the drill-down hint during debugging and did it provide me with a view of this dictionaries' data? Nope, I did get the fields of it, yes. But nothing useful. No built-in visualizers for anything useful, that I had tried. Phew!

Inspecting components is even more disillusioning. You won't even get the caption from a menuitem without typecasting or fiddeling with it...

Then, I thought: Hey, they integrated a file browser, so they would surely allow me to navigate easily to my project directory or to the file, I had open. Nope, as with almost anything, that I thought would have been the most basic user expectation from feature XYZ, I ended up, being completely disappointed.

Oh, and btw: The Delphi project explorer will still not allow to create folders and drag files around/into it to move/copy them between folders. The project managaer had always been a pet hate of mine in D7, and it didn't get much more useful in 2010 at all.

I just bought Delphi 2010, so that I might get a cheaper upgrade to native x64 or xplat in the future. So I better not use it too often until then, or I might loose interest in even those 2 prospects...

2010 is a big step forward, after all. But only compared to Delphi 7, which felt very old and dated when it was new. Compared to current IDEs like Netbeans and VS, Delphi 2010 feels a bit too cheap and unsophisticated (e.g. It still won't allow complete shortcut customization of all commands, has no highlighting for classes, interfaces, records, ..). However, I always hated the window clutter that D7 created, so this at least got much better.

Phew that was a lot more venting than I originally thought, I would end up doing... o_O

p.s.: I won't even start with "with" or the joys of single-pass compilation that requires force feeding everything in exact the right order, kinda like being a human pre-compiler.

link|improve this answer
13  
Man, this is a blog entry, not an answer for a minor annoyance. ;-) – Sertac Akyuz Jan 22 '10 at 0:18
show 3 more comments
feedback

Constants are not constant enough for the compiler:

const
   SLCT = 'Large Cash Transaction';

...

const
   SAdd = 'Create a new '+SLCT+' report';
   SEdit = 'Edit a new '+SLCT+' report';
   SDeleteConfirm = 'Are you sure you wish to delete this '+SLCT+'?';

Complains that SLCT isn't a constant expression.

While:

const
    clGlassColor = $00963228;

...

const
    clGlassBorderColor = clGlassColor;

works fine. Some constants are constant enough for the constant constants.

link|improve this answer
3  
It isn't. "const" really means "const" IOW: data section of your exe. A resource string is not that constant, provide a matching translation .dll and you'd see the difference. – Robert Giesecke Jan 22 '10 at 0:10
1  
Borland? They don't even exist anymore. – Mason Wheeler Jan 22 '10 at 1:57
1  
i'm sure [insert company name] can have a reason why it fails. Now they just have to fix it. Let them keep their name the same for 10 years, then i'll bother to learn it, or spell it. – Ian Boyd Jan 22 '10 at 4:01
1  
+1 how constant does it need to be people! – David Heffernan Nov 25 '10 at 21:23
show 7 more comments
feedback

I've mentioned this a few times before, but IMO properties need a little bit of work.

Properties are an abstraction that allows you to write code as if you're addressing public fields while preserving encapsulation. Since properties are supposed to look (from the outside, at least) like fields, there's no reason why you should ever be unable to pass a read/write property to a var parameter.

If read and write both point to the same internal field, it's trivial. Otherwise, read a copy of the value, pass it to the function, then take the result and write it to the property. The compiler should be able to handle this transparently in every case, instead of rejecting it.

link|improve this answer
show 6 more comments
feedback

One of my biggest nitpicks is the lack of simple Delphi examples in the help file.

link|improve this answer
show 2 more comments
feedback

Compiler will not emit symbols compatible with WinDbg, ntsd, Visual Studio, etc.


Edit:

The problem being that Windows Error Reporting (WER) and WinQual cannot be used. Also, the crash dumps created with the DbgHelp library generally make no sense without some crutch. This, however, is not limited to Delphi (see here). Nevertheless Delpi (and C++ Builder) are commercial tools (as opposed to MinGW or OpenWatcom) and thus I think it would be feasible to license the means from Microsoft.

If you ever had the pleasure of using WinQual, you know the true benefit of using these symbols.

madExcept and friends (for Delphi) are only partially useful. With proper symbols I could even take a memory dump of a running process using a tool like procdump.exe from Sysinternals and then inspect that dump. This is very useful for long-running processes.

link|improve this answer
3  
Really? I'll admit I haven't worked with a lot of other debuggers, but Delphi's is far better than either GDB or the Visual Studio debugger. What features is it missing? – Mason Wheeler Jan 25 '10 at 15:05
1  
Having compatible debug symbols would be very useful. For me, not so much for a windbg vs delphi debugger, but being able to fully use the error reports from Microsoft's winqual. – otherchirps Mar 21 '10 at 14:28
show 2 more comments
feedback

Number of elements differs from declaration.

Just tell me how many elements to put in the array!

link|improve this answer
1  
@The_Fox: if is a loop, just count from Low(array) to High(array) – Fabricio Araujo Oct 19 '10 at 14:58
show 4 more comments
feedback
1 2 3

Not the answer you're looking for? Browse other questions tagged or ask your own question.