Discount/Upgrade Price forFiveWin++?Already purchased FW,FWH
-
- Posts: 11
- Joined: Wed Jan 25, 2006 5:43 am
Discount/Upgrade Price forFiveWin++?Already purchased FW,FWH
Hi, does anybody know if I could get a discounted or upgrade price on FiveWin++ considering I've already purchased FW and FWH.
- Antonio Linares
- Site Admin
- Posts: 37481
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Contact:
-
- Posts: 11
- Joined: Wed Jan 25, 2006 5:43 am
FW=FW++
Is FW essentialy the same thing as FW++ and if not what are the differences?
- Antonio Linares
- Site Admin
- Posts: 37481
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Contact:
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).
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.
-
- Posts: 11
- Joined: Wed Jan 25, 2006 5:43 am
- Antonio Linares
- Site Admin
- Posts: 37481
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Contact:
-
- Posts: 11
- Joined: Wed Jan 25, 2006 5:43 am
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
Kind regards,
Gerrit Ferwerda
- Antonio Linares
- Site Admin
- Posts: 37481
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Contact:
-
- Posts: 11
- Joined: Wed Jan 25, 2006 5:43 am
- Antonio Linares
- Site Admin
- Posts: 37481
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Contact:
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
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
-
- Posts: 11
- Joined: Wed Jan 25, 2006 5:43 am
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
@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
- Antonio Linares
- Site Admin
- Posts: 37481
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Contact:
-
- Posts: 11
- Joined: Wed Jan 25, 2006 5:43 am
- Antonio Linares
- Site Admin
- Posts: 37481
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Contact:
-
- Posts: 11
- Joined: Wed Jan 25, 2006 5:43 am