I was doing some customization to my forms, since I want them with some published properties appear on Object Inspector. I've done the simple way: create the form, put it on object repository, created a package to register it with RegisterCustomModule.

I would like to know if anyone have a way to put it on Object Repository in a automated way (I want to simplify the installation of this on other machines).

I googled, but either nobody wrote something about it or I didn't find the correct keywords...

link|improve this question

What Delphi version? Delphi 7 or < should be different from Delphi 2005 >. – Cesar Romero Feb 5 '09 at 21:08
I tagged the question delphi2006 – Fabricio Araujo Feb 6 '09 at 14:47
Why the downvote? And why doing it 3 years after the question? – Fabricio Araujo Feb 27 at 17:09
feedback

3 Answers

up vote 2 down vote accepted

You have to do two things first:

  1. Add the file you want in the repository folder (for Delphi 2007, it's $PROGRAMFILES$\CodeGear\RAD Studio\BDS\5.0\ObjRepos).
  2. Update the BorlandStudioRepository.xml file in the same folder. You can look at it's current contents to see what needs to be added.

Then create the registry entry under HKCU\Software\CodeGear\BDE\5.0\Known IDE Packages\Delphi to register your .BPL with the IDE.

link|improve this answer
The missing pass, seems, it's finding in what folder the repository is. But I can devise it. Thanks. – Fabricio Araujo Feb 9 '09 at 17:28
I showed you where it is; it's the same for earlier Delphi versions, except you have to replace the obvious. You can get it from the Windows registry too using TRegistry. Enumerate the keys under HKCU\Software\Borland to look for earlier versions, HKCU\Software\CodeGear\BDS for later ones. – Ken White Feb 9 '09 at 23:32
It's what I tried to say in my prior comment, sorry for not being clear. – Fabricio Araujo Feb 11 '09 at 16:22
feedback

Since nobody else is giving answers, let me tell you would I would try.

I would go to the registry and export a copy of the Delphi branch before registering the form in the repository, then register and save another copy, and compare them in a difference viewer. If you're lucky, the information is stored there and you can deduce what registry entries you need to add to register... you may be able to just ship a .reg file.

BTW, that is how we configure our Delphi installations at the company I work at. Keeps everything the same...

If it doesn't work, the config is probably stored somewhere in the file system. You could employ similar forensic methods to attempt to reverse engineer how the registration is encoded there...

link|improve this answer
Seems I'll have to do this...... Hmmm... – Fabricio Araujo Feb 6 '09 at 14:53
feedback

If it's on a local network you could have each developer use the same Shared Repository (Environment Options) and install the design package in their IDE.

link|improve this answer
Actually I'm talking about machines that's not always connected. Actually a notebook and / or office machines. So maintain a Shared Repository is not an option this time. – Fabricio Araujo Feb 7 '09 at 6:41
feedback

Your Answer

 
or
required, but never shown

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