Page 2 of 2

Re: is there a Error in DrXlsx32.lib 32 Bit ?

Posted: Mon Sep 23, 2024 11:59 am
by Jimmy
hi,

have now installed harbour_and_xharbour_builds-master\harbour_bcc770_32_20240814.zip

Code: Select all | Expand

buildh ..\0\listview\drxls
but still got Error
Compiling...
Harbour 3.2.0dev (r2407221137)
Copyright (c) 1999-2021, https://harbour.github.io/
Compiling '..\0\listview\drxls.prg' and generating preprocessed output to '..\0\listview\drxls.ppo'...
Lines 5038, Functions/Procedures 1
Generating C source output to 'drxls.c'... Done.
Embarcadero C++ 7.70 for Win32 Copyright (c) 1993-2023 Embarcadero Technologies, Inc.
..\0\listview\drXLS.c:
Turbo Incremental Link 6.97 Copyright (c) 1997-2022 Embarcadero Technologies, Inc.
Error: Unresolved external '__streams' referenced from C:\FWH\LIB\DRXLSX32_BCC.LIB|drawing
Error: Unable to perform link
* Linking errors *

Re: is there a Error in DrXlsx32.lib 32 Bit ?

Posted: Mon Sep 23, 2024 12:53 pm
by Enrico Maria Giordano
DRXLSX32_BCC.LIB is not compatible with the new BCC. Try to add this to one of your PRGs:

Code: Select all | Expand

#pragma BEGINDUMP

int _streams;

#pragma ENDDUMP

Re: is there a Error in DrXlsx32.lib 32 Bit ?

Posted: Mon Sep 23, 2024 1:48 pm
by Jimmy
hi,
Enrico Maria Giordano wrote:DRXLSX32_BCC.LIB is not compatible with the new BCC. Try to add this to one of your PRGs:

Code: Select all | Expand

#pragma BEGINDUMP
int _streams;
#pragma ENDDUMP
YES, now it work

but when use

Code: Select all | Expand

c:\fwh\samples>buildh ..\0\LISTVIEW\DRXLS
it does NOT generate c:\fwh\0\LISTVIEW\DRXLS.c

it does generate c:\fwh\samples\DRXLS.c
i have to copy c:\fwh\samples\DRXLS.c to c:\fwh\0\LISTVIEW\DRXLS.c and run

Code: Select all | Expand

c:\fwh\samples>buildh ..\0\LISTVIEW\DRXLS
again