vote up 3 vote down star

I've been asked to re-open a project I wrote in 1998/99 in Delphi 3 and which has been running stably since then. I have the Delphi 3 code base on an aging Windows 98 machine which exists only to keep this project alive. Obviously, I'd like to bring the source code base into the 21st century before undertaking any major revisions.

I note happily that Delphi 2010 (I'm currently on 2007) claims to be able to import projects from Delphi 2 on. Does anyone have any experience importing large projects from Delphi 3? Can I expect this to be an easy transition, or a difficult one?

In addition the original project makes use of third party components including DBISAM, WPTools, and TMS Planner. I note that all of these are still available for the latest release of Delphi. Assuming I first install the new versions into Delphi 2010 can I expect the parts of my application that use these components to be translated as well? I know that at least WPTools has changed some of its component structures and interfaces since the version used in the original application and obviously I'll have some recoding to do there, but will the failure of those parts of the program prevent my code base from being upgraded at all?

flag

You should really evaluate first whether a recompilation with Delphi 2010 will really bring the app "into the 21st century". A modern app uses recent controls and (Vista-style) dialogs and thus looks totally different, supports visual styles, works with limited user accounts, properly supports Unicode (that's much more than getting it to compile with Delphi 2009+), has no hard-coded paths, ... Maybe there's so much to be changed and fixed that a rewrite with Delphi 2010 is a better proposition? – mghie Oct 2 at 15:30
2  
@mghie Maybe his plans is bring the codebase to D2010 to unify the development environment and getting used to it before adventuring on a rewrite or heavy changes. – Fabricio Araujo Oct 2 at 15:38
I'll have some rewriting to do in any event since the original codebase (I wrote it myself) isn't great. Still, I want to know that I can get a working version of the program in relatively short order, from there I'll rewrite as the project allows. Unicode is not that important, this is a line-of-business application for a firm whose business is bound tightly to the laws of a single US state. – Larry Lustig Oct 2 at 15:45
1  
As far as Vista style dialogs (and I believe the office where this application runs is still on XP) can that not be handled by simple refactoring after the application is compileable? – Larry Lustig Oct 2 at 15:45

4 Answers

vote up 6 vote down check

It should be very possible to do this migration, and depending on how your code is written, it may either be painful or painless. Unfortunately its not easy to say which until you start the migration process.

The first thing i would do would be to make sure that ALL DFM files are converted to their text representation. This I believe was set to default in later versions of Delphi but as I recall Delphi 3 used a binary format. There should be a utility file named DFMConvert or something in the delphi 3 bin directory which allows you to convert a DFM to text. The reason you will want to do this is to insure that you can read the source if you have to perform a hand edit of the DFM due to a component not loading. Not only are you jumping versions of Delphi, but you also are jumping versions of EVERY component you use and there may be a few incompatibilities that may cause a component to fail loading. I have found if this is the case and you have a "new" version, then use the edit the DFM source directly and compare a test form with the component on it against what your old version contains. Remove anything (or rename) that is out of place and then attempt to load the form again.

As Frabricio mentioned, if you use variants then you will need to make minor adjustments to your uses clause.

The good news is that your code itself should work fine once you get the components/uses clause corrected. If you go directly to Delphi 2010, your only other issue would be Unicode and the compiler does a fantastic job of pointing all of them out to you via errors and warnings.

link|flag
Thx. WRT to "there may be a few incompatibilities that may cause a component to fail loading", can you mention any such incompatibilities you've experienced? – Larry Lustig Oct 2 at 16:32
One such incomatibilities would be a property change where the new component either renamed the property or no longer supports it. This will generate an error loading the form with an error that will potentially remove the component from the form. By editing the DFM manually you can correct the behavior and load the form completely. – skamradt Oct 2 at 16:41
3  
The dfm file conversion utility is called "convert". – dummzeuch Oct 2 at 18:48
vote up 2 vote down

Just to reassure you, I recently converted the software I am developing from Delphi 4 to Delphi 2009 to gain Unicode capabilities, and I had a number of issues, but they were all solvable within a couple of weeks.

One thing to note: If you use any 3rd party packages, make sure they have a Delphi 2010 version available that you can upgrade to before you convert. Delphi 2009 would be okay, but I would not try to use older packages in D2010.

link|flag
vote up 2 vote down

As you have D2007 and assuming all these component sets come with D2007 dcus as well, I'll advise you to first try reopen the codebase on D2007. And after that, go to D2010 because of the Unicode feature of the actual VCL - which can create some migration problems (which I'll not discuss here because it's deeply discussed on the web and here on SO).

I'd say that because somewhere between D5 and D7 (don't record exactly) happened an unit reorganization of the rtl (with the creation of the Variants.pas unit and many OTAPI units changed names, etc). So that will be where your first problems arise. EDIT:Not only Variants got relocated, but much IDE integration stuff too - to avoid unlicensed code to get deployed. If you have some OTAPI code (for example, code that allows published properties on inherited forms), it'll need to be relocated to a package project.

As skramradt said, you may have to deal with the binary DFM thing....

After that, if all works, go to the Unicode thing. Depending on the app, it can be easy or not. For mine ones, not of great annoyance. But I know there are others facing greater problems with it than me.

link|flag
But my understanding is that there's no hope that a D3 project will even open in D2007 while D2010 claims to be able to do so. I assume refactoring for the changed RTL is part of the D2010 upgrade process. – Larry Lustig Oct 2 at 15:47
Both D2007 and D2010 will open D3 projects, or at least should open them. – Craig Stuntz Oct 2 at 16:07
Thx. Did I misunderstand that the previous-version import feature is new in D2010? – Larry Lustig Oct 2 at 16:49
All Delphi versions tried to upgrade projects from all previous versions. They even mostly succeeded. – dummzeuch Oct 2 at 18:50
vote up 0 vote down

I confirm what the others are saying: converting a D3 application to D2010 is usually easy as far as your own code is concerned. I see to difficulties: 1) You used String as general buffer, storing something else than characters. 2) Your code assume that sizeof(char) is 1, that is use Length() when SizeOf() should be used or the reverse.

The most difficult part are the 3rd party components. It looks like all components you are using still exists for D2010, that is a good point. But it is likely that their interface has been changed and of course will require some code changes.

btw: If you need help, my company is providing consultancy for such problems. See http://www.overbyte.be to contact me.

link|flag

Your Answer

Get an OpenID
or

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