Discount/Upgrade Price forFiveWin++?Already purchased FW,FWH

Gerrit Ferwerda
Posts: 11
Joined: Wed Jan 25, 2006 5:43 am

Discount/Upgrade Price forFiveWin++?Already purchased FW,FWH

Post by Gerrit Ferwerda »

Hi, does anybody know if I could get a discounted or upgrade price on FiveWin++ considering I've already purchased FW and FWH.
User avatar
Antonio Linares
Site Admin
Posts: 37481
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Contact:

Post by Antonio Linares »

Gerrit,

We reply you by email.
regards, saludos

Antonio Linares
www.fivetechsoft.com
Gerrit Ferwerda
Posts: 11
Joined: Wed Jan 25, 2006 5:43 am

FW=FW++

Post by Gerrit Ferwerda »

Is FW essentialy the same thing as FW++ and if not what are the differences?
User avatar
Antonio Linares
Site Admin
Posts: 37481
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Contact:

Post by Antonio Linares »

Gerrit,

FW and FW++ are fully source code compatible. They work the same way. They use the same source code.

The only difference is that you use Xbase++ compiler (xpp.exe) and ALink.exe and FW is provided as a DLL (though you use a LIB to build your EXEs).
Last edited by Antonio Linares on Wed Jan 25, 2006 10:53 pm, edited 1 time in total.
regards, saludos

Antonio Linares
www.fivetechsoft.com
Gerrit Ferwerda
Posts: 11
Joined: Wed Jan 25, 2006 5:43 am

Post by Gerrit Ferwerda »

ok i understand so all of FW resources are in the Dll for Xbase++ to understand.
User avatar
Antonio Linares
Site Admin
Posts: 37481
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Contact:

Post by Antonio Linares »

Gerrit,

Right :)
regards, saludos

Antonio Linares
www.fivetechsoft.com
Gerrit Ferwerda
Posts: 11
Joined: Wed Jan 25, 2006 5:43 am

Post by Gerrit Ferwerda »

Hello again, i'm trying to compile a sample from fw++ and i'm getting a bunch of unresolved externals, on your website it says "To link your app you just need to use Five32rt.lib (instead of Five.lib, FiveC.lib, Objects.lib and WinApi.lib) how do I use the .lib file to link?

Kind regards,

Gerrit Ferwerda
User avatar
Antonio Linares
Site Admin
Posts: 37481
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Contact:

Post by Antonio Linares »

Gerrit,

In the samples directory there is a build32.bat file. Just try: build32 tutor01

Then try build32 tutor02. Both samples (and most of the rest) should build without problems.

Please review build32.bat file and you will see how to build an application using Xbase++ and FW++.
regards, saludos

Antonio Linares
www.fivetechsoft.com
Gerrit Ferwerda
Posts: 11
Joined: Wed Jan 25, 2006 5:43 am

Post by Gerrit Ferwerda »

Yes i've tried to use the Build32 bat file and I receive this error.

ALINK: fatal error ALK4001: cannot open file "tutor01.res"

By the way thanks for your prompt support!
User avatar
Antonio Linares
Site Admin
Posts: 37481
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Contact:

Post by Antonio Linares »

Gerrit,

build32.bat uses the Borland resources compiler (brc32.exe) that you may not have. It is free, here you have it:
http://hyperupload.com/download/6a1c3753/brc.zip.html
regards, saludos

Antonio Linares
www.fivetechsoft.com
Gerrit Ferwerda
Posts: 11
Joined: Wed Jan 25, 2006 5:43 am

Post by Gerrit Ferwerda »

I already have that resource compiler here is what my bat file looks like,maybe you can find the problem from this.

@ECHO OFF
CLS
ECHO ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ¿
ECHO ³ FiveWin++ 1.82 - November 2005 xBase and OOPS development power ³Ü
ECHO ³ (c) FiveTech, 1993-2005 for Microsoft Windows 95/98/NT/2000/ME and XP ³Û
ECHO ÀÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÙÛ
ECHO ÿ ßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßß

SET INCLUDE=c:\alaska\xppw32\include
set path=%path%;c:\alaska\xppw32\lib;c:\windows
c:\alaska\xppw32\bin\xpp %1 %2 /p /n /i..\include /com

rem if exist %1.rc c:\alaska\xppw32\bin\arc %1
rem if exist %1.rc c:\borland\bcc55\bin\brc32 %1

SET LIB=c:\alaska\xppw32\lib;..\lib
if not exist %1.rc goto :NORES
if exist %1.rc c:\bcc55\bin\brc32 %1
c:\alaska\xppw32\bin\alink %1.obj /PM:PM five32rt.lib xpprt0.lib %1.res
GOTO :END

:NORES
c:\alaska\xppw32\bin\alink %1.obj /PM:PM five32rt.lib

:END
if not errorlevel 1 %1
User avatar
Antonio Linares
Site Admin
Posts: 37481
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Contact:

Post by Antonio Linares »

Gerrit,

Please remove the rem from this line:

rem if exist %1.rc c:\borland\bcc55\bin\brc32 %1
regards, saludos

Antonio Linares
www.fivetechsoft.com
Gerrit Ferwerda
Posts: 11
Joined: Wed Jan 25, 2006 5:43 am

Post by Gerrit Ferwerda »

That seemed to work...but is this FW++ for xbase++version 1.9 because I currently have 1.82 but should be getting 1.9 shortly... if so then everything should be working soon.
User avatar
Antonio Linares
Site Admin
Posts: 37481
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Contact:

Post by Antonio Linares »

Gerrit,

Yes, it is for Xbase++ 1.9 RC2.
regards, saludos

Antonio Linares
www.fivetechsoft.com
Gerrit Ferwerda
Posts: 11
Joined: Wed Jan 25, 2006 5:43 am

Post by Gerrit Ferwerda »

ok so apperently I only have fivewin++1.82 could you send me a email with the link to download FW++1.9 please.
Post Reply