Re-use of registered components and libraries Hi all. We're currently switching to a new version control system, and we're reconsidering the way we set up our Delphi projects. We routinely use a set of external components, like TMS, Raize, WPCubed, etc. Any developer will typically work on different projects, and each project can use different versions of those components, depending on when the product was last updated (some are so old they only need updating once every few years). Our problem is that, in order to be used at design time, a component needs to be registered in Delphi. After doing this, Delphi will try to load that component even when no project is loaded . I would prefer if components were only loaded when a project that references them is opened. This means we can't load one version of a component for one project, and a different version for another project. We've circumvented this by installing the library components on a mapped drive (W:\Lib). When sw...