Delphi XE2
Moderators: gto, EgonHugeist, olehs
Delphi XE2
Hello
I have Download the new Revision vom Zeos Repository
When i compile the Project i become a Error
Can anybody help me?
thx
I have Download the new Revision vom Zeos Repository
When i compile the Project i become a Error
Can anybody help me?
thx
Hi Seawolf!
I dectect a similar situation con XE2, even indicated the route Delphi Library Path. I have been compiling Zeos placing files in C:\ProgramFiles\Embarcadero\RAD Studio\9.0\bin.
Version: Windows 7 32 Bit.
I dectect a similar situation con XE2, even indicated the route Delphi Library Path. I have been compiling Zeos placing files in C:\ProgramFiles\Embarcadero\RAD Studio\9.0\bin.
Version: Windows 7 32 Bit.
seawolf wrote:Have you set the build directory into del O.S. path?
Or inside Delphi?
-
- Platinum Boarder
- Posts: 1956
- Joined: 17.01.2011, 14:17
Hello StoRmtec,
I had a similar problem with Delphi XE. The problem seems to be that windows can not find the ZComponentDesign160.bpl. Windows tries to load it as it would load a regular dll. So it has to be in the same directory as the Delphi executable or in the path environment variable. So you seem to have three options:
1) copy the ZComponentDesign160.bpl to the bin directory of Delphi. On my Computer this is "C:\Program Files\Embarcadero\RAD Studio\8.0\bin"
2) modify the PATH environment variable in Windows. Control Panel -> System > somewhere there...
3) use a batch file like the following to enhance the PATH environment variable before Delphi is started:
I prefer the third method, because I have more than one IDE installed.
Best regards,
Jan
I had a similar problem with Delphi XE. The problem seems to be that windows can not find the ZComponentDesign160.bpl. Windows tries to load it as it would load a regular dll. So it has to be in the same directory as the Delphi executable or in the path environment variable. So you seem to have three options:
1) copy the ZComponentDesign160.bpl to the bin directory of Delphi. On my Computer this is "C:\Program Files\Embarcadero\RAD Studio\8.0\bin"
2) modify the PATH environment variable in Windows. Control Panel -> System > somewhere there...
3) use a batch file like the following to enhance the PATH environment variable before Delphi is started:
Code: Select all
@echo off
set PATH=C:\Komponenten\ZEOS-7.0-trunk-sf\packages\delphi15\build;%PATH%
"C:\Program Files\Embarcadero\RAD Studio\8.0\bin\bds.exe" -pDelphi
Best regards,
Jan