I'm doing some work porting code from a Delphi 3 based application to another language. The conversion for the most part has been a success, but I still get some failures in some corner cases, that I've tracked down to certain Delphi functions. I'd like to make sure that I'm fully aware of what those functions actually did at the time, and so I'm looking for documentation for that version and implementation of the functions, and not "free pascal" or other, later versions of those functions. Google took me to a now defunct Borland website, and was of little help.

Does anyone know where I can get a copy of the Delphi 3 docs?

link|improve this question

Do you have a running Delphi 3 IDE? – jachguate Dec 6 '10 at 22:18
Nope. Legacy, legacy, legacy code base :( – Robert P Dec 6 '10 at 22:33
I think the online docs should, most likely, give you what you need. Which functions are causing concern? – David Heffernan Dec 6 '10 at 23:01
2  
If it existed in Delphi 3, it should still be in later versions, and the behaviour will be the same even if the implementation has changed. Borland, and then Embarcadero have always tried not to break things between releases. (Other than Unicode) – Gerry Coll Dec 6 '10 at 23:12
1  
@Deltics, @User205376: The important word here is "tried", and basic functionality, such as Copy(), Length() etc hasn't broken. Main point was the the changes from from the 1999 D3 to D2007 are somewhat less than the differences between C# versions. Hopefully the as yet vaguely mentioned VCL+ will make the VCL a bit more consistent. – Gerry Coll Dec 7 '10 at 4:26
show 5 more comments
feedback

1 Answer

up vote 5 down vote accepted

Not the simpliest, but still a viable and legal way is to download a trial of the latest Delphi version from http://www.embarcadero.com and use it's help file. Function behavior didn't change since Delphi 3 for those functions which existed in Delphi 3 and later versions. Alternatively, if you need Delphi 3 docs, please contact me by e-mail ( mayevski at eldos dot com) -- I will analyze legal aspects of sharing Delphi 3 help file and send one to you if it can be legal.

Update: Better yet -- Embarcadero offers documentation as a separate download. This should solve your problem.

link|improve this answer
Great! This should do it. Thanks! – Robert P Dec 6 '10 at 23:16
1  
Also, it looks like they (even have the docs in a Wiki: docwiki.embarcadero.com/RADStudio/2010/en/Delphi_Reference – Robert P Dec 6 '10 at 23:18
Indeed they do - and I sometimes used then when I couldn't find something in D2006s sometimes abysmal help. D7 (the last WinHelp based help) was probably the best. It got stuffed when they had to change help engines to get the newest WinAPI stuff. – Gerry Coll Dec 7 '10 at 20:57
feedback

Your Answer

 
or
required, but never shown

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