vote up 34 vote down star
17

Soon Delphi 2010 "Weaver" will enter in beta. (See http://www.embarcadero.com/products/beta_programs.php)

Which would be your most wanted features for the next release of Delphi?

Mine (from top of the head):

  • tooling for synchronizing the representations of DB schema (aka. DB metadata) in code and in database
  • language enhancements:
    • CASE on non-ordinal types
    • lazy evaluation
    • mixins
    • AOP (aspect oriented programming)
  • VCL enhancements:
    • DB enhancements (TDataSet, TClientDataSet - faster, more feature rich)
    • OPF/ORM on native side
    • (more) containers, classes (using generics)
  • IDE enhancements:
    • Runtime Object Inspector using the already registered editors to allow WYSWYG debugging of the objects/classes (and generally a better debugger)
    • Code management tools
    • Refactoring assistants
    • Find unused code (ok, here we need support from linker)
  • 64-bit compiler

...and many many more :-)

Yours?

UPDATE: There are some sneak previews at http://wings-of-wind.com See for yourself.

flag
show 10 more comments

117 Answers

1 2 3 4 next
vote up 0 vote down

Get sources of BDE...

link|flag
vote up 2 vote down

Three compilers

  • first from Delphi 7 - you can make programs for Windows 98, you can develope old programs
  • second from Delphi 2009 - with Unicode
  • third for 64 bits programs
link|flag
vote up 2 vote down

Native PostgreSQL support !!

link|flag
vote up 1 vote down
  • When I am in a block of code (in a begin/end pair or try finally or repeat until or case structure or ..?) I would like that whole block to be highlighted.

  • Dock non-visual components in some kind of tray rather than in the Form because they get in the way.

  • I would like to make "application level" components which only show up for certain projects and are targeted to a set of projects. There are parts of large applications that can be made into components - but those components are only relavant to that project or set of projects. I do not make components because it is too time consuming. I would like an easy way to create them for a given project. Maybe like a component bucket for a project where I can create new components but I do not have to install them - they become available to the current project.

link|flag
vote up 1 vote down

undo / redo in design time and stable IDE only

link|flag
vote up 0 vote down

It would be great to have a code beautifier. There exists some from 3rd party even for free, but I would expect this feature in each good development tool.

link|flag
vote up 1 vote down

Support in the delphi framework for Microsoft Management console(MMC) snap-ins.

It is an important standard and been around for over 10 years

link|flag
vote up 0 vote down
  • Stability
  • Stability
  • Stability
  • x64-compiler
  • Official x64-support for the environment (not wow64)
link|flag
vote up 0 vote down

My wishlist:

  • Stable IDE;
  • A thorough review of QC reports;
  • Cross-platform compilation support;
  • Compiler optimizations for modern CPUs;
  • 64-bit compiler;
  • BASM function inlining;
  • Revised RTTI that supports additional property data;
  • SVN integration.
link|flag
vote up 0 vote down

1: Native Decimal type, decimal arithmetic, see QC report #68381 - this could replace FmtBCD.

2: Multiple main/foreground threads: each with it's own message loop and form handling; the application would exit when all foreground threads are finished - extremely useful when you want to develop a multitask application like Firefox or Office (the latter doesn't support this functionality either).

3: Complete documentation

4: Better interface RTTI, as in QC report #46581

5: Access to the syntax tree in IDE experts, for custom code formatters and stuff.

link|flag
vote up 2 vote down

Encrypted DataSnap!!!

plz, do Datasnap security!

link|flag
vote up 0 vote down

I would like that Properties like .Caption and .Hint etc. can be replaced by a resource-String variable for better translation.

link|flag
vote up 0 vote down

i like to have aliases in "with"-statements.

link|flag
vote up 0 vote down

A really - really - effective means of moving backward and forward through a chain of declarations. The existing solution works well if the code compiles, and I've evidence that under D2009 it is worse than D7. I'd like a parser / text search mechanism to do the lookup even on code under construction. Bri

link|flag
vote up 0 vote down

Fix the Object Inspector - Please! It's been broken for so long now. When you elect to Arrange by Name it is very buggy!

It s a small thing but honestly, why has it remained broken for so long. I always opt for Arrange by Name and it is just a pain when scrolling. Seems like a refresh problem.

link|flag
vote up -1 vote down
  • About Task Manager

Destroy will be Destroy Free will be Free

we wanna start the app whti a simple form using just the memory witch have in her unit.

on create the second form with a lot of 3d components, the memory(in task manager) grow in ths time, and not when start the entire application.

link|flag
vote up 0 vote down

Cross platform compiler

link|flag
vote up 0 vote down

Some Delphi Prism features:

  • LINQ
  • contracts
  • futures
  • parallel loops
  • "implies" operator

Reasonable pricing, Turbo edition that costs like a bicycle and not like a car.

link|flag
vote up 0 vote down

Move dfm into pas file like in c#. Stable IDE

link|flag
vote up 1 vote down

64 bit compiler and cross platform compiling

link|flag
vote up 1 vote down

64 bit compiler !

link|flag
vote up 0 vote down

My wish list would be (prioritized):

  • More stable IDE, I've experienced several exception windows from the compiler at seemingly random moments. I've seen this in both 2006, 2007 and 2009 releases.
  • More modern compiler, honestly still in the 2009 version the most advanced CPU the compiler can optimize for is the Pentium Pro.
  • 64 Bit support, this is something I've waited for, and really looking forward to. As a side note, it may even force them to add some improvements to the compiler.
  • Cross platform version of VCL.... Now that would rock.
  • One thing that is very unlikely to get through. (and only for the C++ compiler really) standardize the VCL more, since my confidence in Codegear surviving for much longer (at least the C++ Builder product) is at a historical low. It would be fantastic using i.e. the Intel C++ Compiler with my C++ Builder Project.
  • Add a Webkit (or Gecko) component directly just like the TWebbrowser/TCPPWebbrowser, much like what you get in Qt.

Though I doubt we will see any of the points, except for the 64 bit support. Which by the way, would be a much welcomed addition.

link|flag
vote up 3 vote down

a MUCH better HELP SYSTEM !!!!! PLEASE !!!

link|flag
vote up 1 vote down
  • Linux
  • Firebird Support
  • Windows7 64 bit support
  • Easy IDE (Like Delphi7 )
  • Faster (Like Delphi 7 )
  • Unicode support for CDS Filter ( Midas )
  • Improvements on Database Controls ( for example improved DBGrid )
link|flag
vote up 6 vote down

Automatic deallocation without garbage collection.

Instead of this:

var o:TMyObject;
begin
  o:=TMyObject.Create;
  try
    o.DoSomething;
  finally
    FreeAndNil (o);
  end;
end;

It would be nice to get:

var o:TMyObject;
begin
  o:=local TMyObject.Create;
  o.DoSomething;
end;

Here, the keyword local forces the compiler to deallocate the object before the function finished. It would also enable such constructs:

(local TMyForm.Create(nil)).ShowModal;

This would create the form, show it modally, and deallocate it again in a deterministic/plannable/non-random way.

link|flag
vote up 1 vote down

cross compilation to other platforms (osx, linux)

link|flag
vote up -1 vote down

A working version of Kylix.

In this day and age, I guess that means a baked-in version of Mono with full support.

link|flag
vote up 4 vote down
  1. Faster and non-blocking code insight.
  2. Packages without needing to compile with all the run-time packages. Just the one with the new functionality.I compile application without the run-time packages, but I can use just one, or two additional packages.
  3. Fix IDE bugs.
link|flag
vote up 0 vote down

Nilable types like the Nullable types in C# 2.0. I don't like the Variant since it allows a lot more than int/null values t be written in a int?

link|flag
vote up 5 vote down

XML Serialization / Deserialization.

link|flag
1 2 3 4 next

Your Answer

Get an OpenID
or

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