Search found 81 matches: exceltodbf

Return to advanced search

Importar datos de excel a dbf

Buenas tardes. Necesito recuperar datos de una planilla de excel y guardarla en una dbf. estoy usando fwh 12.6 y harbour 3.1 rev 17222. busque en el foro y vi una funcion que implemente pero al compilar da el error: unresoved external _HB_FUN_FW_EXCELTODBF es por las version que manejo? alguien me p...
by José Camilo
Fri Jan 06, 2023 8:33 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Importar datos de excel a dbf
Replies: 3
Views: 446

Re: Leer Excel grande a un array o DBF

... simpler: 1. Open the excel book with Excel application and leave it open. Then, // open or create dbfFW_ExcelToDBF()  The function ExcelToDbf() will read the used range from the open workbook and write to default alias. However what I am not sure, till I test at my end, is whether ...
by nageswaragunupudi
Tue Feb 08, 2022 7:17 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Leer Excel grande a un array o DBF
Replies: 9
Views: 784

Re: Leer Excel grande a un array o DBF

FWH has built-in functions GetExcelRange() and FW_ExcelToDBF() for this purpose. But your data is huge, better to use a custom approach for this case. 1) Save Excel sheet as CSV and then copy to DBF. OR 2) Reading row by row is ok. Instead, read in chunks, ranges of 20,000 approx in a loop and save ...
by nageswaragunupudi
Mon Feb 07, 2022 8:02 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Leer Excel grande a un array o DBF
Replies: 9
Views: 784

Re: FW_EXCELTODBF with tdatabase

Dear Mr. Rao,
Is there a standalone example.
If yes, are these functions working with mod harbour.
I think a mod harbour sample which uses EXCEL as a "small database" would be great.
Best regards,
Otto
by Otto
Tue Feb 01, 2022 5:01 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FW_EXCELTODBF with tdatabase
Replies: 4
Views: 347

Re: FW_EXCELTODBF with tdatabase

Silvio.Falconi wrote:Now I resolve with

IF oImport:ExcelToDBF( oRange, nil, .t. )
lreturn :=.t.
ENDIF

But I not Know if it is correct!!


Correct.
by nageswaragunupudi
Sun Jan 30, 2022 5:41 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FW_EXCELTODBF with tdatabase
Replies: 4
Views: 347

Re: FW_EXCELTODBF with tdatabase

Now I resolve with

IF oImport:ExcelToDBF( oRange, nil, .t. )
lreturn :=.t.
ENDIF

But I not Know if it is correct!!
by Silvio.Falconi
Thu Jan 20, 2022 8:46 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FW_EXCELTODBF with tdatabase
Replies: 4
Views: 347

Re: FW_EXCELTODBF with tdatabase

I think that you need to have a alias active for that file.

select DBINFO // target for the exeltodbf
FW_ExcelToDBF( oRange, nil, .t. )
by Marc Venken
Wed Jan 19, 2022 4:38 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FW_EXCELTODBF with tdatabase
Replies: 4
Views: 347

FW_EXCELTODBF with tdatabase

oImport:=TImport():New() IF FW_ExcelToDBF( oRange, nil, .t. ) lreturn :=.t. ENDIF give me error wich is the right command ? Error Error occurred at: 19-01-2022, 13:39:00   Error description: Error DBCMD/2001  Workarea non in use: DBINFOStack Calls===========   Called from: &...
by Silvio.Falconi
Wed Jan 19, 2022 12:43 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FW_EXCELTODBF with tdatabase
Replies: 4
Views: 347

Re: Decimal detection

Hi.
WhatsNew Fwh2106 contains this:
* Función FW_ExcelToDBF(): Elimina los ceros a la derecha después del decimal al
convertir números a texto.

Maybe it can help you.
Regards
by FranciscoA
Mon Sep 27, 2021 4:13 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Decimal detection
Replies: 10
Views: 1179

Re: New FTDN June/Junio (FWH 21.06)

Mayo 2021, Junio 2021 ===================== * XBROWSE: = Mejora a oSortCbx: En la versión 2104, el combobox mostraba los nombres de los índices, que pueden ser diferentes de los nombres de las cabeceras. En esta versión el combobox muestra por defecto los nombres de las cabeceras. El programador pue...
by Antonio Linares
Wed Jul 28, 2021 2:07 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN June/Junio (FWH 21.06)
Replies: 7
Views: 2141

New FTDN June/Junio (FWH 21.06)

May 2021, June 2021 =================== * XBROWSE: = Enhancement to oSortCbx: In release 2104, the combobox was displaying index names, which may be different from the header names. In this release combobox displays header names by default. The programmer can display index names instead of header na...
by Antonio Linares
Tue Jul 27, 2021 4:47 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN June/Junio (FWH 21.06)
Replies: 7
Views: 2141

New FTDN June/Jnio (FWH 21.06)

May 2021, June 2021 =================== * XBROWSE: = Enhancement to oSortCbx: In release 2104, the combobox was displaying index names, which may be different from the header names. In this release combobox displays header names by default. The programmer can display index names instead of header na...
by Antonio Linares
Tue Jul 27, 2021 4:46 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN June/Jnio (FWH 21.06)
Replies: 0
Views: 473

Re: TOleAuto () versus FW_ExcelToDBF()

I am thinking of making this change in the FWH next version.
by nageswaragunupudi
Mon Jun 07, 2021 11:03 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TOleAuto () versus FW_ExcelToDBF()
Replies: 10
Views: 995

Re: TOleAuto () versus FW_ExcelToDBF()

I sent modified dbffunc2.prg to your email. Please check and let us know. Yes !! I tested some files and they work as aspected.. Thank you very much. The newly added function gives me also the option to format more specific data when converting... Great. For compatability (I have full and clean FW/...
by Marc Venken
Mon Jun 07, 2021 9:27 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TOleAuto () versus FW_ExcelToDBF()
Replies: 10
Views: 995

Re: TOleAuto () versus FW_ExcelToDBF()

I sent modified dbffunc2.prg to your email.
Please check and let us know.
by nageswaragunupudi
Mon Jun 07, 2021 1:42 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TOleAuto () versus FW_ExcelToDBF()
Replies: 10
Views: 995
Next

Return to advanced search