up vote 0 down vote favorite
share [g+] share [fb]

I am attempting to install a .bpk package into the Borland C++ Builder 5 IDE from the command line. I am sure that this is possible, as we have some third party components that manage to do so, but I have not been able to figure out the required steps.

Any pointers are appreciated!

link|improve this question

70% accept rate
feedback

1 Answer

up vote 5 down vote accepted

The packages are installed by creating registry values in the following location:

HKEY_CURRENT_USER\Software\Borland\C++Builder\5.0\Known Packages

If you look there you will see all the VCL packages, as well as any 3rd-party packages you might have installed.

Use a command-line registry editing tool, or write your own, to create the necessary string values in that location.

link|improve this answer
Missed it by about three keystrokes. <g> You're quick, Jon. – Ken White Dec 8 '09 at 20:49
Perfect! Thank you. – Rob Hunter Dec 8 '09 at 22:16
feedback

Your Answer

 
or
required, but never shown

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