vote up 32 vote down star
13

Delphi 2009 is due in the next couple months, which is its 12th release since Turbo Pascal became Delphi in 1995. Despite continued innovation it has not returned to its level of popularity before the Inprise fiasco.

Many developers with Delphi backgrounds are moving to C# and many Delphi legacy applications are being rewritten in C#, despite the fact Delphi supports .NET and in many cases the existing application could be ported without rewriting.

Is it just a losing battle to compete against Microsoft's tools on their platform? Is there something Code Gear / Delphi can do now that they are under new management to regain market share? What can enthusiasts do to help?

Why do you do Delphi programming? or Why are you not doing Delphi programming?

flag
6  
Was Delphi ever on top? – Omar Kooheji Oct 30 '08 at 23:08
11  
Yes it was. Especially in Delphi 1 - 3 time frame, it was well recognized as the number one development tool. Today it is still well respected in a number of areas, just not in its heyday. – Jim McKeeth Nov 3 '08 at 19:28

67 Answers

1 2 3 next
vote up 51 vote down check

I think Delphi simply needs a plan. I mean: Borland - Inprise - Borland - We're going to sell! - No, sorry, we're not going to sell, it's CodeGear now - Ok, we ARE selling, it's Embracadero now. That did not really help building confidence...

Then, they seem to do too much with too little manpower, and the result are Products like Delphi 8. Oh yes, they were people who actually built stuff with it, but that does not change the fact that it was really bad, sorry guys. The new IDE (I think it was called Galileo) took until Delphi 2006 to actually be usable, but at that point they already lost a lot of reputation due to two less than stellar versions (D8 and D2005).

Then, they did leave out Win32 too long. Unicode VCL? Bah, just use the shiny new .net! Now, if their .net implementation would not be soo far behind Microsoft that would may be work, but with a Win32 Delphi that starts to age and a .net Delphi that is 2 years behind Visual Studio, I did not really have the opinion that the guys had a clue what they want to do.

I do not want to sound too harsh though, the Delphi Guys were quite open and available in the newsgroups, and they did not really try to hide the fact that it was Borland Management who is to blame here, but as a customer that does not matter to me.

So basically, a period of bad, old and overpriced products really cost them.

I think they are now moving strong again. They seem to be under the hood of a company who actually cares now, they are start making more interesting Products again (to my knowledge, Delphi 2007 has a good Vista Support, working AJAX and FINALLY Unicode, even though I did not try and use them). Blackfish SQL looks really interesting as well.

I think they still need a bit more polish, a clearer road map, re-think the pricing. Compared to the Visual Studio Professional Pricetag of 899 €, Delphi is not really competitevily priced, and the full Developer Studio is even less so.

The Delphi Language is still quite attractive in my opinion, so I would be sad to see them go down, but in the last years, Delphi reminded me of the Amiga, with all the positive and negative thoughts associated with that.

link|flag
vote up 29 vote down

I learned Delphi for a job I held recently (for a short period). I honestly think that Win32 Delphi is the best natively compiled (ie, not Python, Java, or .NET/Mono) language in existence. If you compare a feature list of C# and Delphi (pioneered by the same intelligent being) you will be amazed at what Delphi does while still compiling to native code. The Algol/Pascal/Delphi syntax did not become popular, but I honestly think that it is a shame because it is very well structured. I'd much rather use Delphi than C++ for writing native apps. That said, I am a Linuxer, and these days I use Python, but if Free Pascal were a standard part of Linux distros, I would happily use it for non-trivial applications.

To answer the question: Linux support (not Kylix, that was a mistake) and less of an emphasis on .NET development or up-to-date .NET/Mono support would help. Unfortunately, I don't think anything will rescue Delphi at this time.

It's too bad. Delphi code compiles insanely fast compared to C++. It is a statically typed language with the option of having dynamic types (Variant) like Boo, and possibly C# 4.0. Really, this language was so far ahead of its time. People are excited now about getting dynamic typing in their non-dynamic languages, but Delphi had it going on well over a decade ago. Interfaces, abstract classes/methods, properties, etc. I could go on, but you get the point.

link|flag
show 1 more comment
vote up 23 vote down

Delphi is still the best development tool around for Windows. It's better than anything Visual Studio has to offer, but it's not better enough for people who have learned programming on the C family to feel an incentive to switch.

You want to make Delphi stand out? Fix the obvious annoyances in Delphi and just let it shine. There are two separate sets of features that need fixed: IDE annoyances and language annoyances. First, the post-D7 IDE is a horror to work with. Delphi made its reputation by being better than Visual Studio. Why, why did Borland decide to consciously imitate an inferior product?

  • The D7 helpfiles were wonderful. I'd be hard-pressed to imagine a better documentation system for a programming environment. What in the WORLD has happened to it? Microsoft's document reader is just plain awful, and the help for the last two versions weren't even complete! Bring old-school help back please!
  • Slow, slow, slow! There's just no excuse for Delphi being as slow as it is. D2009's a lot better than the last few have been, but there's still room for improvement.
  • The dev team needs to remember that an IDE is a text editor, and a text editor never blocks. As long as there isn't a dialog box open, there's no reason why you should ever be unable to edit your code. That means that if CodeInsight needs to sit around and spin my HD (for up to 5 minutes, in some cases) to display some popup or tooltip, it should do it in a background thread. Same goes for whatever it's doing the first time I hit F1 in a session. Until it's done and that help options dialog box actually appears, I should be able to write more code.
  • Someone already mentioned making all the random squigglies go away. If it will compile, it shouldn't be marked in the code as an error, period. Again, D2009 is a lot better at that, but it's still got a ways to go, especially with being unable to find units listed under uses. (And generics tend to screw it up too.)
  • Class completion (CTRL-SHIFT-C) has some annoying corner cases relating to properties that need to be fixed. Check out what happens if you press that while you have a write-only property in your class, or a property whose read or write declaration refers to a protected member of a parent class. The first one produces code that won't compile. The second is subtler and more dangerous: its result compiles, but can break working code.
  • It's just too expensive. It's a great program, but it's not worth nearly as much as they're charging. Turbo Delphi was a great idea. Update it to a 2009 version and they'd make a lot of people very happy.
  • I can has multiplatform support plz? Being able to write code on Windows and cross-compile it to Mac and Linux (or to write the code and compile on other platforms) is a feature I'd willingly pay extra for. Lazarus is nice, but it's just missing too many critical features, and its debugger is a mess.
  • EDIT: Just found another annoyance that ought to be fixed. If you leave Delphi open overnight when Windows changes between DST and standard time, (for example, if your computer is "asleep" at the time and you turn it back on again after,) it "alerts" you that a whole bunch of your files have been changed and asks you to reload them. Repeatedly. That needs to get fixed.

The language needs a bit of work too. Object Pascal is a wonderful language, and I'd pick it over VB or one of C's misbegotten descendants any day, but it's got a few rough edges that need to be polished.

  • Properties are wonderful. Why are we stuck with an implementation that's only halfway complete? Give me one good reason why you should ever be unable to pass a read/write property to a var parameter. If they both refer to the same data member, it's simple. If not, retrieve the read value and make a copy of it, pass the copy, get the result, and send it to the appropriate write.
  • Likewise, array properties need to be fixed. Why should they require get/set methods instead of direct access? If I wanted to work with mandatory get/set methods to access the private members of my objects, I'd code in C++. I use Delphi to get away from that sort of syntactic diarrhea.
  • Bring some of the syntactic sugar introduced in Oxygene/Prism over to native Delphi. Some of it's dependent on a managed code framework, but stuff like the colon operator and double comparison ("if 5 < x < 12") are just automagical compiler tricks, and I'd love to have access to them without all the overhead the CLR imposes. Also, if they could find some way to bring parallel FOR loops and Futures in without the CLR, I'd be ever-so-grateful.

Delphi's already the best there is. But fix the above things, and it would be so far ahead of the pack that people would consider it worth switching, instead of where it's currently at, struggling to maintain an ever-shrinking lead.

link|flag
1  
The reason Borland abandoned their Visual Basic clone IDE, in favor of a Visual Studio IDE, is WinForms. Borland didn't want to have to write an entire WinForms form designer, when Microsoft provides one right in the framework. But the MS form designer dictates a certain style of IDE around it. Everything started from the form designer, and snowballed into simply redoing the Visual Studio IDE - giving up a huge advantage they had. – Ian Boyd Jul 14 at 4:52
show 2 more comments
vote up 14 vote down

The original architect of Delphi moved to Microsoft and created C#. So to answer your question, I guess he'd have to quit and go back to CodeGear.

When a product no longer has the founding team, it's very difficult to ever get the "magic" back. Corel acquired Ulead and now my favorite graphical editing software is slowly turning into crap.

Borland as we knew it is gone, and I've switched to C#. The size of the community alone makes all the difference in my daily work. Just look at the number of Delphi questions in here, for example. EEK!

Funny though, Delphi still rules Win32 in a world where Microsoft WPF makes people nervous. I still use Delphi 7 at work for our Windows client apps.

link|flag
1  
What does WPF stand for? – Toby Allen Sep 26 '08 at 9:53
3  
I've heard of this great search engine that might answer that question for you on the first linked result. – jsight Sep 26 '08 at 16:51
2  
Windows Presentation Foundation – Ian Boyd Oct 3 '08 at 13:36
vote up 13 vote down

We all agree that Delphi remain a wonderful development tool.

Now Delphi needs StackOverflow: a good place to meet great Delphi developers !

We need to feel that we are still alive :-)

link|flag
show 3 more comments
vote up 11 vote down

Delphi needs a technical overhaul as well as what others have alluded to, long-term plans and stability.

That an service pack upgrade to Delphi is followed by nothing less than an 18-point plan on how to manage the upgrade means that somewhere, somehow, a lot of people just didn't do their job.

Even Microsoft, who just released SP1 for Visual Studio 2008 covering many different editions in one service pack manages with a normal installation wizard that just does the job. Period.

This kind of problem is symptomatic to how Delphi has been created and managed over too long a time.

Delphi needs to be fixed:

  • stability issues
  • make the actual compiler and the intellisense processor behave the same way, or even just combine them, we have been forced to just ask the editor to forego any kind of advanced intellisense because it just plainly gets it wrong, every time. Things like red squigglies hovering in whitespace between methods and similar doesn't build confidence.
  • make the entire eco-system more stable, the way component packages are loaded and built just means that the day just one of these files have a problem, Delphi simply gives up, entirely
  • and then there's the entire long-term planning department, which seems to have taken a permanent hiatus. Stop bundling new products along with Delphi and start making the product itself better, then perhaps people would start taking it seriously enough to warrant long-term commitments to using it.

I believe the illustration shown above, with the miracle, describes the current state of affair exactly.

Delphi is a sinking ship, and nothing less than a miracle will save it. Good intentions and well-meaning is not enough.

link|flag
1  
Delphi's component system. Hear hear! It's a nightmare when someone new has to install Delphi, or re-install their machine. – Ian Boyd Oct 3 '08 at 13:35
vote up 11 vote down

What is needed is:

1) Attitude - for companies to start adopting development tools by technical preference of their developers rather than following the political hype. We have stuck firmly with Delphi for 12 years, in spite of occasional doubtful looks from customers. This has resulted in significant performance and maturity in our codebase. Had we switched to the fashionable language du jour every 2 years, we would be nowhere near this level today. So yes, Delphi is "legacy" but also (for us) an indispensable basis for future advances.

2) Evangelism - show the youngsters today how Delphi completely outperforms the "big guys" in runtime performance, productivity, and community support. Keep the pricing competitive and make sure students do their first programming courses with Turbo Delphi.

3) CodeGear should go in and embrace the efforts of the FPC team to gain access to native 64-bit Windows, Linux and MacOS cross-compilation support.

4) Take the lead in support for Multicore processing (compiler level optimizations, framework library support, debugger improvements, design tools, etc).

5) More effort to be put into quality assurance tools specifically for Delphi - code analysis, coverage tracking (branch and line based), timing profiler, unit and UI testing, etc.

regards, Kristofer

link|flag
vote up 10 vote down

I also think that they should forget about the .NET version, and focus on Win32.

A Linux compiler would be a great feature. I don't think a Linux IDE is necessary, just the compiler.

And I second targetting universities and schools. My first programming class was with Turbo Pascal, so adopting Delphi later was a natural path. Today kids are beggining with Java.

link|flag
1  
Focusing on Win32 seems an unlikely path to lead to mainstream adoptance. – BobbyShaftoe Dec 16 '08 at 11:55
show 1 more comment
vote up 9 vote down

Delphi was always the choice by developers in the know and clearly a superior development tool than Visual Studio in so many ways.

Then came .Net and the situation became much less clear. Borland put a lot of effort into making Delphi a .Net player, but by producing a product that was always going to be one or two steps behind Visual Studio .Net it was doomed. Visual Studio .Net was always the best choice for .Net development. Borland should have just produced a Delphi plug-in for Visual Studio instead of leaving it to RemObjects.

But now that CodeGear is in charge and free from the shackles of Borland, things seem a lot better. CodeGear has listened to customers who have always said that they want more work done on the native development side of Delphi.

This is were Delphi clearly scores, MicroSoft has now left Delphi as the primary tool for native Win32 (and hopefully soon Win64) development. For simple applications Delphi is a winner. This is why I am still using Delphi.

As an example we are having great success in deploying Delphi applications using thin client computers running XP embedded. These systems use flash drives rather than hard drives and are fanless and hence very quiet. The flash drives we use are 512 Mb so there is plenty of space to install a Delphi application on top of the small footprint of XP embedded.

I think Delphi will be around for many years to come.

link|flag
show 1 more comment
vote up 9 vote down

I loved Delphi and developed in it for years...even attending several Borland conferences. They lost me when I realized (at one of the shows) that Inprise's management really had no interest at all in standard development and was hoping to pull an 'IBM' on the market: showcasing bloated "enterprise" application frameworks that were way overpriced. They had this jewel in Delphi but they decided it just didn't make them enough money right now so they starved it of the resources it needed (Delphi2005 anyone?) but kept pushing the price up anyhow.

I was also put off at the need to update my reporting tool and all of my third-party controls every time a new Delphi was released. It wasn't just the cost - although that was a factor - it was knowing that everything would break when I upgraded and that I'd have to spend days getting it running again.

I still maintain a quite successful Win32 product using Delphi7. Delphi 2009 just doesn't have any appeal - especially since I'm not even sure that the 3rd-part tools used in my app are still around.

link|flag
vote up 9 vote down

And Then a Miracle Occurs

I think that is the key to a recovery. I really don't see anything else doing it at this point.

link|flag
show 1 more comment
vote up 8 vote down

1) Provide an educational version that's completely free.

2) A strong emphasis on stability. There are all too many of us who haven't upgraded because we don't like what we see.

3) The DOJ to do it's job on anti-trust. Microsoft's development tools aren't earning their keep.

4) While Kylix was a major error, making it possible to compile for a Linux target would be very worthwhile. While nobody is going to buy Linux tools that does not mean there isn't a market for a tool that does both Windows and Linux.

link|flag
1  
+1 for free version. +1 for stability. -1 for DoJ – Ian Boyd Jul 14 at 4:56
vote up 6 vote down

What's gone wrong with Delphi is a case of mismanagement. They shouldn't have released Kylix and they cannot compete with MS on the .NET front. Delphi 2005 was a disaster of a product and the damage had been done in previous with 8 and 2005 being the most notable.

They are moving in the right direction with releasing the turbo range for free but I think the best things they can do is target schools and universities and get people switched on sooner rather than later. Perhaps they could open some of their source?

link|flag
show 1 more comment
vote up 6 vote down

There has been such a lack of focus (Kylix !) and stability in the Borland / Inprise / Borland / CodeGear / Embarcadero mess over the years that large companies were never going to invest in that technology suite, because who knew where it was going to be in six months time ? Even now, with the new owner in place, who knows where it's going to end up ?

I started using Delphi when D3 was the current version, and have since used 5, 7, 2005 and 2006. In that time, I evangelised somewhat to the VB developers that I was in fairly close contact with, when it really was an excellent alternative to VB (up to VB6 I guess). But corporates bought into MS technology then and they do now.

If Embarcadero are going to change Delphi's fortunes then there needs to be continued support of free versions (the Turbo range), somehow getting Delphi into the hearts and minds of new developers (get 'em while they're young !) and fix a problem that MS isn't fixing.

Oh, and Jim, I am using Delphi, because I love it ! And as of today, reading your blog too ;^)

link|flag
vote up 6 vote down

I still use Delphi and intend to do so. The biggest benefits I find are:

  1. Quick and easy deployment ( no need for .NET and GAC )
  2. Easy to debug - No .NET stack overflows that are increasingly difficult to debug
  3. Better documentation (and working examples) than MSDN
  4. Several thousand working and tested components

I should point out my clients do not care for the latest fad., they just want something that works reliably and keeps up-to-date with their business. Delphi is still the fastest way to created reliable executables that I know about.

What Delphi needs is not more features but better marketing of their product. Focus on needs of large corporations rather than fads like RoR/BlackFish/.NET you can only sell a fad for a short amount of time.

Latino - for Linux look at FreePascal and PowUtils

link|flag
vote up 6 vote down

Provide a way for me to learn it without having to skip around to old tutorials on the Web where I don't know if the author is teaching good technique appropriate for the current release. I want a book, or video, or anything that will help me understand the language and "the Delphi way", and one that's not several versions old.

I want something I can trust to teach the language, the common idioms, and if possible, tradeoffs for given techniques. I wouldn't mind a book directed at new programmers, but I want one that gives me some confidence that it’s not just an enthusiastic beginner's take on the language, which would be admirable, but may teach me bad form. An official or "CodeGear approved" book or video tutorial would help me commit and actually use the software I paid so much for, but have left sitting unused for lack of confidence. It seems like every book and tutorial I could find was two or more versions old, and since I'm new to Delphi, I don't know if learning from an older source would be the right way to do things on the current version.

link|flag
vote up 5 vote down

Effectively coding in Delphi is not easy since we're not taught it in school. To me, that's the biggest problem, no one is going to switch to Delphi and for the most part all us junior programmers are scared to go to a place where Delphi is the major programming language because about 2.5 percent of development houses use it and it seems to be useless experience.

However, Delphi is awesome, if you read the manual it gets all the more awesome. So if Delphi were taught as a benign non-controversial teaching language like it's predecessor Turbo Pascal was (I'm not sure if there no controversy here), it would be used way more than Java is.


Any info on 2009 would be appreciated, we're planning on updating from Delphi 7 to 2007 (and it may well be 2009 by the time we do).

link|flag
vote up 5 vote down

Delphi needs compelling advantage over the existing ways to build apps on Windows. Since the .Net runtime is commonly found on client PC's, Delphi's advantage of being native feels less significant. At this point, Delphi provides a way to build Windows applications in a less-friendly and arguably less-productive manner than VB.Net, C#, IronPython, etc. It seems cornered into the niche of maintaining legacy applications.

link|flag
vote up 5 vote down

A clean product with good help that simply works.

Price. With VS2008 Std at a price of less than US$250, Delphi would need to be significantly less expensive than $250 to get people to take a chance on it. The great thing about Turbo was that it was $50 when it came out and anyone could afford it to just play with. Delphi IIRC came out at $100 (probably wrong about that, but I'll get corrected :-), again cheap enough to take a chance on in the face of MS.

New developers - not sure how to attack this one, but there needs to be either a way to get it taught in HS or undergrad college -or- some really sexy version for game development to hook kids. That, and as mentioned before, some new, updated beginner books on using Delphi.

Just my (devalued) $0.02 worth.

link|flag
show 1 more comment
vote up 4 vote down

NOT .net or JVM support. Delphi was great as it was a faster way to build GUI apps that could be statically linked into one executable (more or less). I would like to see it go back to that. It had an awesome "rad" environment too (man that term has gone out of vogue).

I think it should play to its (historical) strengths. There aren't many tools on windows where you can build an executable and ship it and it will just work anymore... delphi was one of the greats.

link|flag
vote up 4 vote down

What is needed to get Delphi back in the mainstream?

The hand of God?

I think Delphi was pretty nifty originally (as was their C++ equivalent). At this point though, I'm not sure what Delphi offers over comparable products except a smaller developer base. If you want to build for .NET, it seems that C# is the obvious choice. If you want to build native, you're probably going to go for C/C++

So what niche exactly does Delphi fill, other than the we've-already-got-this-code-written niche? And yes, that's an important niche, but it won't do much to get Delphi into the mainstream. It just relegates Delphi to legacy code. I don't think Borland wants Delphi to be the new Cobol.

For the record, I do wish that Borland was more competitive with Microsoft. It worries me that development tools for Windows are almost exclusively produced by Microsoft.

link|flag
vote up 4 vote down

The company behind Delphi isn't even able to produce a valid formal grammar for the language. That means no third-party tools for code browsing, graphing, refactoring, static code property checking, etc. And the builtin Delphi capabilities are lacking.

link|flag
2  
As someone who's tried to write a parser for Delphi: Hear, hear! – Joe White Jun 7 at 12:41
vote up 4 vote down

Marketing, Positioning and Perception. Code Gear tends to send mixed messages when it talks up Delphi. I recently had this discussion with Nick Hodges and expressed my concern that Code Gear is missing a critical opportunity to get a strong, consistent message out there.

Delphi is not C# and it never will be. The fundamental difference is that Delphi provides developers who need to write real code with one of the best tools available. Other platforms such as C# turn the developer into an assembler, developing applications from other people's code.

I think that Code Gear is starting to realize that it's market is in native code development and has recovered significantly with the release of Delphi 2007/2009. The waters were muddied with Delphi 8.

Delphi's strength is in native code and Code Gear's marketing should aim to educate the development community that core code will always be required, despite Microsoft's attempts to convince developers otherwise.

Delphi puts the real power of native coding in the hands of the developer whilst MS keeps that power for themselves and relegates 'developers' into the role of assemblers.

Code Gear should be working hard to establish itself as one of the leaders in this distinctly differentiated field of development.

MS promote C# as a develpment platform that uses MS-magic to make things happen (check out the new features in C# 4.0). Code Gear should be promoting Delphi as the platform that is used to develop the 'magic'.

link|flag
vote up 4 vote down

There needs to be a Delphi site that promotes, sells and supports Delphi with only a passing reference to the other complementary codegear technologies. These should have sites of their own and all should have similar design to emphasise that all belong to the one family As a template for this codegear could do a lot worse than to emulate Realbasic

Realbasic has a smaller userbase than Delphi but the forums are very active, responsive, easy to use and tightly integrated with the site. The product is explained in simple english with introductions tailored for people with differing backgrounds and people new to programming ( see especially the demo video) It's simple to both try out and purchase the product from the Real site no matter where you are located in the world and the price is the same however far the download has to travel.

They have a free trial and a 90 day money back guarantee.

By contrast the codegear site is a mish-mash of design and content and arguably should carry a warning for epileptics. The different products serving different markets (interbase, jbuilder, delphi for php, blackfish) are lumped together as though they were interchangeable choices or were from an attic sale. Even within the object pascal delphi product there are a confusing array of offerings (Delphi 2007 for win32 R2, really slips off the tongue). Navigation around the site is difficult. Purchasing involves redirection to reseller sites where the product often needs to be located again and where prices are likely to differ. The forums being newsgroups(?) provide a barrier in themselves to people without a university background with horrible names like delphi non.technical. And to cap it all people now have to get their head around if Delphi is from codegear then what's that reference to embarcadero doing everywhere? Maybe it makes embarcadero feel good but it does nothing to sell the product

The impression given is that if you're new to programming then Delphi is much too complicated for you. And I would imagine that if you weren't new to programming but were having a first look at Delphi then you'd pretty quickly conclude that this crowd were clueless

link|flag
vote up 3 vote down

As a Delphi developer, I'd say focus on Win32 development. Borland/Inprise/Borland - Codegear/Embarcadero really lost their focus when they decided to do Delphi for .NET. It was and is guaranteed to lag behind MSFT's offerings in that area.

Now that Microsoft is focused on .NET and web development, there is an opening for truly great Win32 environments. Even though that's quickly becoming a niche market, it's one they could dominate.

link|flag
vote up 3 vote down

What would not hurt Delphi is frankly a free version with sqlite database. I started using delphi when Delphi 1 was in beta and totally loved it. I stopped using Delphi for totally unrelated issues when Delphi was in version 5. I might be going back soon. But a free version doesn't hurt.

What about a Mac version ?

link|flag
vote up 3 vote down

There are places where I find Delphi to be a better tool than C#/VB.NET. For writing Win32 services, Delphi works better for me. The footprint of the .NET Framework is huge and for many cases, just overkill for a service application. I have written a few services with Delphi and it's a really good tool for that sort of work.

Delphi 2009 finally adds unicode to the VCL, that should make it more attractive to the world market. I was glad to see that the 2009 version is Win32 only, I really had no use for a non Micrsoft .NET IDE. I think Delphi will have it's place, but it's just going to be a tiny sliver of the market place.

link|flag
vote up 3 vote down

Let's see what the Embarcadero era will bring. It is no secret that the Inprise/Borland period was a period of missing focus when it came to the Delphi/C++Builder tools.

Having used Turbo Pascal and Delphi since their conception, I still haven't managed to find other tools that equally rich in function, performance and ease of use. It is even harder to find a language that surpass Delphi code in readability and maintainability.

Yes - there are areas where Java, Python, Ruby, C# or even C++ work better, but if you are doing native Windows applications - there simply is no better tool available. It is also a glittering tool for writing data servers.

With Delphi 2009 and Generics, Unicode and other assorted tidbits - Delphi has enough vitality to hold it's own against the steady flow of "new and shiny". With the next versions heading for parallelism and 64-bit - the future looks solid.

Some tool designs just keep working and cuts through your work.
Delphi is nostalgic in the same way as a knife is nostalgic.

link|flag
vote up 3 vote down

Codegear just need to be a bit quicker on their feet.

Clearly Microsoft have as good as abandoned customers developing native code, this creates a good opportunity for an alternative. However we have only just got support for Unicode and there still isn't any 64 bit support.

link|flag
vote up 3 vote down

I think the new managmenet with Embarcadero is a big plus. There is still a market for non MS tools and I think we will see Delphi gain ground. While it has a popular following outside of the US, it definitly needs to gain steam on the US side. IMO Delphi needs to:

  1. Continue to publish their roadmaps and stick to them
  2. Quality releases
  3. Bypass .Net and stay native
  4. 64 bit processing
  5. Take advantage of Embarcadero tools and integrate them into a future IDE.
  6. Tighter web development integration. Maybe VCL for Google apps.

Delphi has a large base and the first two items should allow them to focus on preventign the base from migrating to .Net (it is insane in my opinion to move a large Delphi system to .Net from a cost perspective). As a long time user I see a very positive future with the Embaracero purchase.

link|flag
show 1 more comment
1 2 3 next

Your Answer

Get an OpenID
or

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