Cannot install components that worked under D7 in D2009 - Stack Overflow most recent 30 from stackoverflow.com2009-11-26T22:39:16Zhttp://stackoverflow.com/feeds/question/624509http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/624509/cannot-install-components-that-worked-under-d7-in-d20091Cannot install components that worked under D7 in D2009Altar2009-03-08T23:04:18Z2009-03-09T10:28:13Z
<p>Hi.</p>
<p>I have lots of components that worked perfectly under D7.
I managed to compile and install them by dragging them into the Delphi 2009 IDE.
However, when I try to use those components in a project, the compiler says it cannot find the source code of them.
Where I can enter the path to that library?</p>
<p><hr /></p>
<p>Solution:</p>
<p>I dragged and dropped the old DPK file in Delphi 2009. Then in project manager I choose “Build” an then “Install”.
Everything worked smoothly except that the applications that used the controls couldn't see its source.
Problem solved by adding the path into the Tool-Options-Library Win32. </p>
<p>Thanks to everybody and especially to Mohammed. </p>
http://stackoverflow.com/questions/624509/cannot-install-components-that-worked-under-d7-in-d2009/624620#6246209Answer by Mohammed Nasman for Cannot install components that worked under D7 in D2009Mohammed Nasman2009-03-09T00:24:50Z2009-03-09T00:24:50Z<p>Have you added the source path of the components to your library path?</p>
<p>you can add it from Tools menu > Options > Library win 32 >Library path</p>
http://stackoverflow.com/questions/624509/cannot-install-components-that-worked-under-d7-in-d2009/625422#6254222Answer by Rob Kennedy for Cannot install components that worked under D7 in D2009Rob Kennedy2009-03-09T08:38:33Z2009-03-09T08:38:33Z<p>If you've really installed them, then the compiler shouldn't need to find the source code. The compiler only needs the DCU files.</p>
<p>But if you've taken these components from Delphi 7, then <em>you</em> need to have the source code, because Delphi 7 DCU files are not compatible with Delphi 2009. (The only two versions ever that can use each other's DCU files are Delphi 2006 and Delphi 2007, and then only with certain restrictions.)</p>
<p>Trying to use DCU files from the wrong Delphi version will cause Delphi to try to recompile the units. The solution is not <strong>just</strong> to provide the path to the source code, though. If the units files haven't been compiled yet (and they obviously haven't if they're of the wrong Delphi version), then you haven't really installed anything. Installing components in Delphi has never involved dragging and dropping. Installing a component means installing the package that contains that component, and installing a package often means opening the DPK project file and then choosing the "install" command in the IDE.</p>