-2

I have Source Wizard for Delphi 7 (a code formatter). I'm switching to Delphi 2009. I tried loading *.pas (created with D2009) in Source Wizard in Delphi 7 and there were no problems processing them. How can I make it to show like a menu item in D2009's menu..?

Deduplicator
  • 44,692
  • 7
  • 66
  • 118
John Mirror
  • 193
  • 1
  • 13

1 Answers1

1

If you want to have an item in the tools menu, you can simply click on Tools->Configure Tools (or similar, I have a German Delphi version here).

If you are trying to port a Delphi 7 OTA (Open Tools API) wizard, you have to change the code to the new API, because it changed in the transition from the Aurora IDE (D1 - D7) to the Galileo IDE (D8+).

How do I write a Delphi Galileo IDE Expert?

Or are you asking for a specific tool that is called "Source Wizard"?

PS: It would not hurt to clarify your question a bit. A more specific question gets you better answers.

Edit: You may look at GExperts for the integrated source formatter that is based on DelForExp like the "Delphi Source Wizard" seems to be:

http://www.dummzeuch.de/delphi/gexperts/english.html

Community
  • 1
  • 1
Jens Mühlenhoff
  • 14,565
  • 6
  • 56
  • 113
  • It is a specific tool. You can find informations at: http://www.brothersoft.com/delphi-source-formatting-wizard-789.html – John Mirror Jan 17 '11 at 15:04
  • Ok, so you are trying to get an old code formatter integrated into the 2009 IDE? You might have a look at alternatives: http://stackoverflow.com/questions/402737/delphi-code-formatter – Jens Mühlenhoff Jan 17 '11 at 15:12
  • It seems that "Source Wizard" is based on DelForExp: http://www.aew.wur.nl/UK/Delforexp/ – Jens Mühlenhoff Jan 17 '11 at 15:13