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

prev 1 2 3 4
vote up 0 vote down

A just in all aspects working Delphi -> C++Builder system. The HPP generator of RAD Studio 2007 is so crappy in basics - it is still nearly unusable. Using any new language feature of Delphi upsets the HPP generator completly. There are so many QC entries, but none resolved. If you add new features, than support it in the whole product - you are advertising with the C++Builder usage of Delphi code - but up to now, it is not.

So get this clear and working!

link|flag
vote up 0 vote down

My top two items would be:

(1) 64-bit Compiler

(2) STL-equivalent

link|flag
vote up 0 vote down

Bold support.... We are stuck on Delphi 2006 until Bold is updated...

link|flag
vote up 0 vote down

what about delphi compiler for embedded devices?

link|flag
vote up 0 vote down

Some built in framework's - like MVC or MVP

With a lot of supporting libraries

link|flag
vote up 0 vote down

A built in switch to generate compiled obsfucation into the executable, like what is done with ExeCryptor.

procedure TForm1.ExampleMethod;
var
  sBuffer: string;
begin
  sBuffer := '';

{$StartObfucation}
   MyPassword := Edit1.Text + GenerateGUID();
{$EndObsfucation}

  sBuffer := 'Method Done';
end;

Code obsfucation would get added during Delphi compile.

link|flag
vote up 0 vote down

class explorer for c++

link|flag
vote up 0 vote down

We need implementation in Delphi functionality like in C with frendly classes - OOP is good but object is not enought for object model with big object quantity. You need to find way to implement entity of LAYER in around world in delphi code. It mean that classes are more integrated inside the layer and add some rules to interoperation between layers of objects(classes) (extend C frendship);

link|flag
vote up 0 vote down
  • Annotations (like C# and Java, and Delphi.NET?)

  • RTTI for constructors - this would allow to create constructor-based dependency injection (until now, only property-based DI is possible)

  • namespaces/packages (like C# and Java and Delphi.NET)

  • SOAP 1.2 support

  • JSON based object serialization

Edit:

  • include the XML Databinding Wizard in Professional edition
link|flag
1  
Namespaces are an ugly workaround that C++ invented to compensate for the fact that its compiler doesn't know what a source file is. But then people got used to them, so Java and .NET blindly followed suit. I like my Delphi units as they are, TYVM. (I like your other ideas, though...) – Mason Wheeler Mar 22 at 0:28
vote up 0 vote down
  1. Document the DCU format.
  2. Make DCU Format compatible with old versions of delphi.
link|flag
show 1 more comment
vote up 0 vote down

I have used many RAD based IDE but after trying Delphi4PHP I really liked the way in which forms (HTML web pages) are implemented.

I wish that in Delphi we get a form which have a surface similar to a HTML page (as implemented in Delphi4PHP).

This would make designing forms with dynamic contents truly dynamic and easy. Imagine being able to show problems and text description of that problem in a controls content in data entry form right next to the control without having to put hidden labels next to each control and then making them visible and again hiding them.

Again Imagine the easy with which we can change the look and feel along with locations of controls (on a form) of the form just by making changes to an external CSS like file without having to recompiling the software!

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 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 0 vote down

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

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

Cross platform compiler

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 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

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

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

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 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
  • Stability
  • Stability
  • Stability
  • x64-compiler
  • Official x64-support for the environment (not wow64)
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 0 vote down

Get sources of BDE...

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 -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
prev 1 2 3 4

Your Answer

Get an OpenID
or

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