Who is using ClipWks , i can not build it anymore with xhb rc14
Frank Demont
Who is using ClipWks , i can not build it anymore with xhb rc14
Frank Demont
ClipWKS requieres some functions in C not longer supported by xHarbour.
You'd better use FileXLS class works the same way and it's pure OOP code, pure (x)Harbour code.
The advantage of Clipwks was the speed and the ability to create worksheet without the need for Excel.
On a web application I am creating spreadsheet.xml files but saving them with an extension of xls.
This works very fast and does not need Excel. Excel treats them just like normal spreadsheet files.
I agree with Gale : it is extemely fast and no need to exel
I could build it with xhb januari 2007 release , not anymore with rc14
Trying to compile with BCC55 gives a external :
iLink32.Exe -ap -Tpe /IDebug /LD:\XHARBOUR\Lib @READWKS.bcl
Turbo Incremental Link 5.00 Copyright (c) 1997, 2000 Borland
Error: Unresolved external '_hb_stack' referenced from
C:\FWH\CHANGED\CLIPWKS\XHB\BCCLIPWKS.LIB|IEEREAL
Frank Demont
#pragma BEGINDUMP
#include "hbstack.h"
void * hb_stack = &HB_VM_STACK;
#pragma ENDDUMPAntonio Linares wrote:#pragma BEGINDUMP #include "hbstack.h" void * hb_stack = &HB_VM_STACK; #pragma ENDDUMP
Dionie,
> "ALERT.PRG was compiled by older version, PCODE is no longer supported, please recompile"
You have to recompile ALL your PRGs and used libraries (except FWH ones) as the xHarbour pcode has changed
Antonio Linares wrote:Dionie,
> "ALERT.PRG was compiled by older version, PCODE is no longer supported, please recompile"
You have to recompile ALL your PRGs and used libraries (except FWH ones) as the xHarbour pcode has changed
Dionie,
Check that you are using the right libraries from FWH 7.09 and not some old ones
I have been working more with .xml spreadsheet files lately. It is not as intuitive to design them but you can create them very fast and you do not need Excel.
I am creating them on the fly inside my web xbscript application. I can email them or display them in web browser.
Gale FORd wrote:I have been working more with .xml spreadsheet files lately. It is not as intuitive to design them but you can create them very fast and you do not need Excel.