problem after update

problem after update

Postby Detlef Hoefner » 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
User avatar
Detlef Hoefner
 
Posts: 312
Joined: Sat Oct 08, 2005 9:12 am
Location: Germany

Postby Detlef Hoefner » Mon May 21, 2007 5:49 pm

btw,
this error appears withe every sample i try to build and start.
User avatar
Detlef Hoefner
 
Posts: 312
Joined: Sat Oct 08, 2005 9:12 am
Location: Germany

Postby carlos vargas » Mon May 21, 2007 8: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)
User avatar
carlos vargas
 
Posts: 1719
Joined: Tue Oct 11, 2005 5:01 pm
Location: Nicaragua

Postby Antonio Linares » Tue May 22, 2007 7:28 am

Detlef,

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

Antonio Linares
www.fivetechsoft.com
User avatar
Antonio Linares
Site Admin
 
Posts: 42078
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain

Postby Detlef Hoefner » Tue May 22, 2007 7:48 am

Carlos,

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

Best regards,
Detlef
User avatar
Detlef Hoefner
 
Posts: 312
Joined: Sat Oct 08, 2005 9:12 am
Location: Germany

Postby Detlef Hoefner » Tue May 22, 2007 7: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
User avatar
Detlef Hoefner
 
Posts: 312
Joined: Sat Oct 08, 2005 9:12 am
Location: Germany

Postby Richard Chidiak » Tue May 22, 2007 8: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
User avatar
Richard Chidiak
 
Posts: 946
Joined: Thu Oct 06, 2005 7:05 pm
Location: France

Postby Antonio Linares » Tue May 22, 2007 7: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
User avatar
Antonio Linares
Site Admin
 
Posts: 42078
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain

Postby Detlef Hoefner » Wed May 23, 2007 6: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
User avatar
Detlef Hoefner
 
Posts: 312
Joined: Sat Oct 08, 2005 9:12 am
Location: Germany

Postby Antonio Linares » Wed May 23, 2007 8: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
User avatar
Antonio Linares
Site Admin
 
Posts: 42078
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain

Postby Detlef Hoefner » Wed May 23, 2007 8: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
User avatar
Detlef Hoefner
 
Posts: 312
Joined: Sat Oct 08, 2005 9:12 am
Location: Germany

Postby Antonio Linares » Wed May 23, 2007 8: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
User avatar
Antonio Linares
Site Admin
 
Posts: 42078
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain

Postby Detlef Hoefner » 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
User avatar
Detlef Hoefner
 
Posts: 312
Joined: Sat Oct 08, 2005 9:12 am
Location: Germany

Postby Antonio Linares » 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
User avatar
Antonio Linares
Site Admin
 
Posts: 42078
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain

Postby Detlef Hoefner » Wed May 23, 2007 12:05 pm

Thanks, Antonio
User avatar
Detlef Hoefner
 
Posts: 312
Joined: Sat Oct 08, 2005 9:12 am
Location: Germany


Return to FiveWin for Harbour/xHarbour

Who is online

Users browsing this forum: No registered users and 74 guests