Zdbc120.bpl not found
Moderators: gto, EgonHugeist, olehs
Zdbc120.bpl not found
Hy,
I just tried to install the lates version from SVN to Delphi 2009, everything compiles fine, but when I try to isntall the Design Package ther is an Error: Zdbc120.bpl not found!
Is this problem due to Delphi, or ZEOS ? I allready tried to reinstall ZEOS!
sincerely
christian
I just tried to install the lates version from SVN to Delphi 2009, everything compiles fine, but when I try to isntall the Design Package ther is an Error: Zdbc120.bpl not found!
Is this problem due to Delphi, or ZEOS ? I allready tried to reinstall ZEOS!
sincerely
christian
Re: solution
That solved your problem, but it's not true.jcthiery wrote:thank you for all your help!
I found the solution:
Delphi does not search in any path-directory for bpl's. bpl's must be stored or copied to the /bin folder of delphi installation.
christian
Delphi 2009 actually searches in /bin folder (which is current of compiler/linker) and C:\Documents and Settings\All Users\Documents\RAD Studio\6.0\Bpl (Windows xp).
-
- Fresh Boarder
- Posts: 1
- Joined: 28.03.2009, 02:52
- Location: Brazil
Solution
GTO you're right, Delphi search for BPL and DCU files into C:\Documents and Settings\All Users\Documentos\RAD Studio\6.0\Bpl
I've copy my file to there and it's work. But, where can I change this parameter into the Delphi 2009 IDE, to make Delphi search on my folder? Or better, can I configure this only to a project?
Tnx
I've copy my file to there and it's work. But, where can I change this parameter into the Delphi 2009 IDE, to make Delphi search on my folder? Or better, can I configure this only to a project?
Tnx
-
- Fresh Boarder
- Posts: 15
- Joined: 13.01.2009, 09:20
You can easily configure this in delphi adding "$(BDSCOMMONDIR)\Bpl" in library pathGTO you're right, Delphi search for BPL and DCU files into C:\Documents and Settings\All Users\Documentos\RAD Studio\6.0\Bpl
I've copy my file to there and it's work. But, where can I change this parameter into the Delphi 2009 IDE, to make Delphi search on my folder? Or better, can I configure this only to a project?
Tnx
or
Change
<DCC_BplOutput>build</DCC_BplOutput>
<DCC_DcpOutput>build</DCC_DcpOutput>
to
<DCC_BplOutput>$(BDSCOMMONDIR)\Bpl</DCC_BplOutput>
<DCC_DcpOutput>$(BDSCOMMONDIR)\Dcp</DCC_DcpOutput>
in all ".dproj" files
You may also use MsBuildg to edit the .dproj" files