Delphi XE2

The alpha/beta tester's forum for ZeosLib 7.0.x series

Report problems concerning our Delphi 2009+ version and new Zeoslib 7.0 features here.

This is a forum that will be removed once the 7.X version goes into stable!!

Moderators: gto, EgonHugeist, olehs

Locked
StoRmtec
Fresh Boarder
Fresh Boarder
Posts: 6
Joined: 08.02.2011, 13:28

Delphi XE2

Post 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
seawolf
Zeos Dev Team *
Zeos Dev Team *
Posts: 385
Joined: 04.06.2008, 19:50
Contact:

Post by seawolf »

Which one? rev. 942?
Which error is displayed?
StoRmtec
Fresh Boarder
Fresh Boarder
Posts: 6
Joined: 08.02.2011, 13:28

Post 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'
seawolf
Zeos Dev Team *
Zeos Dev Team *
Posts: 385
Joined: 04.06.2008, 19:50
Contact:

Post 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
StoRmtec
Fresh Boarder
Fresh Boarder
Posts: 6
Joined: 08.02.2011, 13:28

Post 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
seawolf
Zeos Dev Team *
Zeos Dev Team *
Posts: 385
Joined: 04.06.2008, 19:50
Contact:

Post by seawolf »

Have you set the build directory into del O.S. path?
Or inside Delphi?
StoRmtec
Fresh Boarder
Fresh Boarder
Posts: 6
Joined: 08.02.2011, 13:28

Post by StoRmtec »

i don´t know what you mean.
i have set the path to the zeos lib folder.
MYSQL889
Fresh Boarder
Fresh Boarder
Posts: 16
Joined: 16.06.2008, 23:04

Post 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?
StoRmtec
Fresh Boarder
Fresh Boarder
Posts: 6
Joined: 08.02.2011, 13:28

Post by StoRmtec »

have anybody a result for me or can anybody help me?

thx
marsupilami
Platinum Boarder
Platinum Boarder
Posts: 1918
Joined: 17.01.2011, 14:17

Post 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
Locked