Page 3 of 3

Re: Announcing DrXlsx 1.0 by Charles Kwon

PostPosted: Sun Nov 19, 2023 1:32 pm
by Enrico Maria Giordano
Can I see the source code of DRXLSX32X_BCC.LIB?

Re: Announcing DrXlsx 1.0 by Charles Kwon

PostPosted: Sun Nov 19, 2023 3:45 pm
by nageswaragunupudi
Source code for DrXlsx libraries is not made available.

Re: Announcing DrXlsx 1.0 by Charles Kwon

PostPosted: Sun Nov 19, 2023 5:52 pm
by Enrico Maria Giordano
So, how can I find the cause of the error? Only the author of that lib can do it.

Re: Announcing DrXlsx 1.0 by Charles Kwon

PostPosted: Thu Aug 08, 2024 12:48 pm
by paquitohm
Hi,

Please, try so:

Code: Select all  Expand view
cOld:= hb_cdpSelect("ESWIN")    // ESWIN o Portuguese cdp
...
// your code
..
hb_cdpSelect(cOld)
 

Regards

Re: Announcing DrXlsx 1.0 by Charles Kwon

PostPosted: Thu Aug 08, 2024 12:50 pm
by Eroni
Hi everybody.

I am having a problem using DrXlsx library, when the name of folder contains accent, file is not created, as folow sample:
Code: Select all  Expand view

cFileXls := "d:\backups\onedrive\Area de trabalho\test.xlsx" //name of folder contais accent in "A", but i could'nt post here because page crashes when click submit.
oXlsx := TDrXlsx():New()
IF oXlsx:CreateFile( cFileXls ) <> 0 // here that is ok, it returns 0
    ? "Não foi possível criar o arquivo, pode ser que esteja aberto em outro programa!"
    RETURN( .F. )
ENDIF

oXlsx:WriteString(0,0,"Testing)

 oXlsx:Close()

? File( cFileXls ) // .F. - The file was not created??


If I rename the folder, removing accent, works fine.

Anyone having same problem?

Thanks in advance.