FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index FiveWin for Harbour/xHarbour problem after update
Posts: 312
Joined: Sat Oct 08, 2005 09:12 AM
problem after update
Posted: Mon May 21, 2007 12:59 PM
Hi Antonio,

i updated this morning to FWH version 7.05.
When trying to compile and run your sample winpop3.prg i get the following error window:
---------------------------
Unrecoverable error 9000:
---------------------------
'ACTIVEX.PRG' was compiled by older version, PCODE version 9 is no longer supported - Please recompile.


I use xHarbour 0.99.70 and i'm not aware of any ActiveX call in this sample.
What could be wrong?

Best regards,
Detlef
Posts: 312
Joined: Sat Oct 08, 2005 09:12 AM
problem after update
Posted: Mon May 21, 2007 05:49 PM

btw,
this error appears withe every sample i try to build and start.

Posts: 1789
Joined: Tue Oct 11, 2005 05:01 PM
problem after update
Posted: Mon May 21, 2007 08:02 PM

this is: the pcode of the .prg library is diferent of pcode of your source application.

you have two option:

1.-You have recompile all source (.prg) of fivewin for harbour library with the current xharbour compiler. (recreate the fwh library)

or

2.-You have use the xharbour compiler version with building the fivewin harbour library. (change the xharbour compiler what use)

sorry for my very terrible english

the spanish is my native language.

salu2
carlos vargas

Salu2

Carlos Vargas

Desde Managua, Nicaragua (CA)
Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
problem after update
Posted: Tue May 22, 2007 07:28 AM

Detlef,

Please use the xHarbour build that we provide with FWH, thanks

regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 312
Joined: Sat Oct 08, 2005 09:12 AM
problem after update
Posted: Tue May 22, 2007 07:48 AM

Carlos,

thank you very much for your advices.
I understand you well and i'll try them.

Best regards,
Detlef

Posts: 312
Joined: Sat Oct 08, 2005 09:12 AM
problem after update
Posted: Tue May 22, 2007 07:51 AM
Antonio,


Antonio Linares wrote:Detlef,

Please use the xHarbour build that we provide with FWH, thanks


After purchasing the FWH upgrade i downloaded first the FWH from your site and after i downloaded the xHarbour binaries by using the link at your site.

Did i make something wrong?

Regards,
Detlef
Posts: 946
Joined: Thu Oct 06, 2005 07:05 PM
problem after update
Posted: Tue May 22, 2007 08:26 AM

Detlef

If you are using borland compiler, the downloads are ok

If you are using xharbour.com (xbuild), you need to download the RC12 from xharbour.com web site

Hth

Richard

http://www.cbati.com

Uestudio
Fwh 13.05 Harbour 3.2 MSVC 2013
Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
problem after update
Posted: Tue May 22, 2007 07:59 PM

Detlef,

Please check that you don't have another xharbour build on your computer and that you are using the right one. Check your used paths

regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 312
Joined: Sat Oct 08, 2005 09:12 AM
problem after update
Posted: Wed May 23, 2007 06:34 AM

Dear friends,

i finally got everything working.
After rebuilding the FiveWin lib the job was done.

Is there a make script or batch file somewhere to build the fwh libraries?
For the moment i'm using a xMate project.
But with every new FWH version new files have to be added to the library.

Thanks for all your help.
Detlef

Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
problem after update
Posted: Wed May 23, 2007 08:07 AM

Detlef,

FWH works ok with the FiveTech provided xHarbour build.

Were you using a most recent xHarbour CVS files ?

regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 312
Joined: Sat Oct 08, 2005 09:12 AM
problem after update
Posted: Wed May 23, 2007 08:26 AM
Antonio,

i don't use any CSV files.

I only downloaded the recent FWH and followed the link:
XHARBOUR (Borland) - http://fivetechsoft.com/files/xharbour.exe
on your download page.

Regards,
Detlef
Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
problem after update
Posted: Wed May 23, 2007 08:51 AM

Detlef,

We just downloaded FWH and xHarbour from our FTP, installed it a on a computer and it properly built the samples without any error

Please try to build samples\tutor02.prg or samples\webexp.prg

Are you using any library that may be compiled with a previous xHarbour build ?

regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 312
Joined: Sat Oct 08, 2005 09:12 AM
problem after update
Posted: Wed May 23, 2007 10:33 AM

Antonio,

i did not download xHarbour and FWH from your FTP server.

Anyhow, now it's working after rebuilding my FWH libs.
I'd just like to know if there is a link script or make file for building the FWH libraries.

Regards,
Detlef

Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
problem after update
Posted: Wed May 23, 2007 11:11 AM

Detlef,

The download address that we provided you is our FTP server

You may use this batch file to rebuild the library (PRGs):

for %%f in (.prg) do c:\harbour\bin\harbour %%f /n /ic:\fwh\include;c:\harbour\include
for %%f in (
.c) do c:\bcc55\bin\bcc32 -c -Ic:\bcc55\include;c:\harbour\include %%f
for %%f in (*.obj) do c:\bcc55\bin\tlib fiveh.lib -+ %%f /0 /P32,,

regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 312
Joined: Sat Oct 08, 2005 09:12 AM
problem after update
Posted: Wed May 23, 2007 12:05 PM

Thanks, Antonio

Continue the discussion