views:

393

answers:

5

I have a co-worker with a strong background in Ruby that is interested in getting started with Delphi and native development. However, I understand that Turbo Delphi (based on Delphi 2006) is no longer available for download.

So...where does that leave him? Is there any low cost or introductory version of Delphi available legally somewhere? Or is there an offering on the horizon from Embarcadero?

Note: Please don't suggest any legally questionable versions, as that is not an option we will consider.

UPDATED: Sounds like there is no legal or free version of Delphi available. The closest thing is the Lazarus IDE and the Free-Pascal compiler.

+12  A: 

This with this should be close enough. It speaks the language at least.

Ignacio Vazquez-Abrams
To be noted, this is not Delphi, it's Lazarus with the FreePascal compiler.
Cosmin Prund
@Cosmin, yes, this is not Delphi; but it is the closest freeware stuff to Delphi. Delphi itself has no freeware SKU, and based on Michael Rozlog, and Nick Hodges in their Delphi Podcasts, they have no plan for providing any freeware SKU. The most you might see in future, should be a cheaper entry level SKU.
vcldeveloper
It is more Delphi than Prism :-)
Marco van de Voort
+1  A: 

Important update:

Don't simply download any Delphi version from a mirror, even when they used to be free, when they are no longer available from Borland/CodeGear/Embarcadero.

According to Alexander's comment and contrary to the quote below, even though they were free, it may not be legal to newly install them now.

I wasn't aware of that when I quoted the answer from the question mentioned. Sorry.


if you however decide to learn Delphi, you might want to look for Delphi 7 Personal which was removed from Borland / CodeGear / Embarcadero websites, but still is available on some mirror hosters. I believe it is legal to use this as it was once published as freeware. – migajek yesterday

Quoted from a comment on the question http://stackoverflow.com/questions/3194621/do-i-need-to-free-these-objects

The same may apply to Turbo Delphi 2006...

Marjan Venema
Delphi 7 was never freeware.And using Turbo Delphi Explorer is illegal now as well. That's because in order to use it - you need a personal key/serial, which you could got from CodeGear's website. But they do not give keys anymore and all downloads are closed - so you're stuck here. Of course, if you've already installed Turbo - use it. If not - you can't do this legally now.
Alexander
@Alexander: Thanks for pointing that out. Updated my answer.
Marjan Venema
+10  A: 

IMO the Delphi 7 Personal Download is the only available legal "non-expensive" version of Delphi. But is is really limited in its features.

It's really a shame that Embarcadero forces one to invest some USD 900+ even if one wouldn't need all the bells and whistles of the Pro version. Especially if products from the "other company" (the Express versions) are given away for free.

I am talking about the need for the discontinued Turbo product line (based on a stable foundation, i.e. D2010 and not D2006) for the hobby software developer to get him started. Maybe his is even willing to upgrade to a full featured version some day.

Chris

Christian
Do you know where I can download Delphi 7 Personal?
Mick
The last legitimate looking download for Delphi 7 personal, that I know of, was from the Polish Borland site. It is no longer available.
dummzeuch
+7  A: 

Extracts from "About Lazarus":

So just what is Lazarus? Lazarus is the class libraries for Free Pascal that emulate Delphi. Free Pascal is a GPL'ed compiler that runs on Linux, Win32, OS/2, 68K and more. Free Pascal is designed to be able to understand and compile Delphi syntax, which is of course OOP. Lazarus is the part of the missing puzzle that will allow you to develop Delphi like programs in all of the above platforms. Unlike Java which strives to be a write once run anywhere, Lazarus and Free Pascal strives for write once compile anywhere. Since the exact same compiler is available on all of the above platforms it means you don't need to do any recoding to produce identical products for different platforms.

Yeah, but what about the GUI? What widget set are you using? That is the neat part. You decide. Lazarus is being developed to be totally and completely API independent. Once you write your code you just link it against the API widget set of your choice. If you want to use GTK+, great! If you want it to be Gnome compliant, great! As long as the interface code for the widget set you want to use is available you can link to it. If it isn't available, well you can write it.

For example. Let's say you are creating a product on Windows using the standard Windows widgets. Now you want to create a Linux version. First you decide what widget set you want to use. Let's assume you want to use gtk+. So you copy the code over to your Linux development machine, compile, and link against the gtk+ interface unit. That's it. You've now just created a Linux version of the Windows product without any additional coding.

At this point in the development we are using Win32, gtk+, Carbon and QT as our API widget set. As soon as Lazarus reaches a 1.0 release developers will be able to start to create the interface unit to tie the LCL (Lazarus Component Libraries) to other widget sets.

So is this thing really RAD like Delphi? It sure is. Is it totally completed? No not yet.The over all IDE is complete and can be used for most programming needs. Several aspects of the project are still in need of help. Hint. Hint.

Can I use my existing Delphi code? Some of it yes. If the code is standard Delphi pascal and it uses the standard components found in Delphi then the answer is yes. If it uses some specific database, OCX, or DCU then the answer would be no. These items are specific to Windows and would only work on and within Windows. However, if you are only looking to create a Windows product using Free Pascal and Lazarus then the answer would be yes. This hasn't been added to the LCL yet but it should be possible in the future.

Can I create commercial products with this? Yes. The code for the Free Pascal compiler is licensed under the GPL. This means that it is open source, free, whatever name you want to stick to it. You can modify the code if you wish but you MUST distribute those changes or make them available to others if they wish to use it.

The FCL (Free Pascal Component Libraries) and the LCL (which will eventually become part of the FCL) are licensed under a modified LGPL. In a nut shell this means that you can write your own proprietary software that just links to these libraries. You can sell your application without the need to supply or make available your code. However, as with the compiler if you make modifications to the FCL or LCL you must make those changes available to the general public and the world.

cjrh
+1  A: 

Just for completeness, you can get a 30 day trial: https://downloads.embarcadero.com/free/delphi

Also, I'd suggest going to a Delphi conference. You have about a 1 in 30 chance of winning a free copy or a significant discount.

Peter Turner