Page 1 of 1

Delphi XE2

Posted: 06.10.2011, 13:30
by StoRmtec
Hello

I have Download the new Revision vom Zeos Repository
When i compile the Project i become a Error
Can anybody help me?

thx

Posted: 06.10.2011, 13:35
by seawolf
Which one? rev. 942?
Which error is displayed?

Posted: 06.10.2011, 14:14
by StoRmtec
no the rev. 943
the first delphi will convert the files the
wenn i compile the ZComponent160.bpl

[DCC Fataler Fehler] ZAbstractConnection.pas(64): F1026 Datei nicht gefunden: 'ZDbcAdo.dcu'

Posted: 06.10.2011, 22:26
by seawolf
It looks like on the path some folders are missing .. Search that file
on your hard disk and add the folder in which is stored to the path

Posted: 07.10.2011, 06:38
by StoRmtec
Hello

I have set the Path. So i can Compile all the bpl Files but when i click on the ZComponentDesign160.bpl and i click Install i became a Error that the ZParseSQL160.bpl not exist. But when i look into the Build Folder the ZParseSql160.bpl exist

Please can you help me

Thx

Posted: 07.10.2011, 21:03
by seawolf
Have you set the build directory into del O.S. path?
Or inside Delphi?

Posted: 10.10.2011, 06:05
by StoRmtec
i donĀ“t know what you mean.
i have set the path to the zeos lib folder.

Posted: 10.10.2011, 15:41
by MYSQL889
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.
seawolf wrote:Have you set the build directory into del O.S. path?
Or inside Delphi?

Posted: 12.10.2011, 13:13
by StoRmtec
have anybody a result for me or can anybody help me?

thx

Posted: 12.10.2011, 14:22
by marsupilami
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:

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
I prefer the third method, because I have more than one IDE installed.

Best regards,

Jan