Search found 85 matches: getexcelrange

Return to advanced search

Re: Leer Excel XLSX grande a un array o DBF

Hi Mr. Rao Unresolved external _HB_FUN_FW_GetExcelRange Unresolved external _HB_FUN_xlValue I use FWH 23.07, Thanks Very sorry, I corrected the mistakes. Please see my edited posting again. the functions are: GetExcelRange .. not FW_GetExcelRange ...
by nageswaragunupudi
Thu Aug 10, 2023 8:27 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Leer Excel XLSX grande a un array o DBF
Replies: 12
Views: 1253

Re: Leer Excel XLSX grande a un array o DBF

Hi Mr. Rao

Unresolved external _HB_FUN_FW_GetExcelRange
Unresolved external _HB_FUN_xlValue

I use FWH 23.07, Thanks
by Enrrique Vertiz
Thu Aug 10, 2023 5:44 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Leer Excel XLSX grande a un array o DBF
Replies: 12
Views: 1253

Re: Fivewin and ADO

hi, thx for all those Information the *.XLSx was about 17000 x 11 if GetExcelRange() is based on EXCEL than i can´t use it i want to build a Tool which can "read/write" *.XLSx without EXCEL but i must install ADO "Pack" ( Microsoft.ACE.OLEDB.12.0 ...
by Jimmy
Sat Jun 10, 2023 12:36 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Fivewin and ADO
Replies: 36
Views: 3839

Re: Fivewin and ADO

i wonder "how" GetExcelRange() will work as it "only" Return oRange, not Recorsd-Set :?: GetExcelRange() returns oRange object of oExcel This does not use ADO, but uses Excel OLE. Similar to Word OLE and PowerPoint ...
by nageswaragunupudi
Fri Jun 09, 2023 8:49 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Fivewin and ADO
Replies: 36
Views: 3839

Re: Fivewin and ADO

... to open "same" *.XLSx i was not able to change a CELL in *.XLSx even when "display" in XBROWSE --- i wonder "how" GetExcelRange() will work as it "only" Return oRange, not Recorsd-Set :?: what is   :nEditTypes := { 1,1,1 } i "normal" ...
by Jimmy
Fri Jun 09, 2023 4:37 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Fivewin and ADO
Replies: 36
Views: 3839

Re: Fivewin and ADO

... folder. It is our oversight and we regret the inconvenience. This is the reason for the crash. This program demonstrates the function oRange   := GetExcelRange( cBook, [cSheet], [cRange] ) cSheet defaults to ActiveSheet and cRange to UsedRange. Please try with any other ...
by nageswaragunupudi
Thu Jun 08, 2023 11:21 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Fivewin and ADO
Replies: 36
Views: 3839

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, ...
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: 785

Re: GetExcelRange ERROR

Yes, Thanks Mr. Anser FWH has function for reading Excel with ADO oRs := FW_OpenADOExcelSheet( cFile, [cSheet], [cRange], [lHeaders] )XBROWSER oRs  thanks Mr Nages, I tried with oRange := FW_OpenADOExcelSheet(cFileXls)xbrowser oRange Give me first this Messag...
by Silvio.Falconi
Mon Sep 20, 2021 8:04 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: GetExcelRange ERROR
Replies: 10
Views: 902

Re: GetExcelRange ERROR

Yes, Thanks Mr. Anser
FWH has function for reading Excel with ADO
Code: Select all  Expand view

oRs := FW_OpenADOExcelSheet( cFile, [cSheet], [cRange], [lHeaders] )
XBROWSER oRs
 
by nageswaragunupudi
Mon Sep 20, 2021 5:16 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: GetExcelRange ERROR
Replies: 10
Views: 902

Re: GetExcelRange ERROR

Silvio.Falconi wrote:Is there no remote possibility of extracting data from an excel spreadsheet without having Microsoft Excel installed?

You can use ADO to read the Excel data without having Excel installed on your PC
by anserkk
Mon Sep 20, 2021 4:42 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: GetExcelRange ERROR
Replies: 10
Views: 902

Re: GetExcelRange ERROR

1) Is Microsoft Excel installed on this computer? Check: if ExcelObj() == nil ? "Not installed" else ? "Installed" endif 2) Also check if file exists with ? File( cFileXls ) Sorry Nages, one question: maybe the problem is that there is no Excel on that computer? No there is no E...
by Silvio.Falconi
Sat Sep 18, 2021 6:44 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: GetExcelRange ERROR
Replies: 10
Views: 902

Re: GetExcelRange ERROR

1) Is Microsoft Excel installed on this computer?
Check:
if ExcelObj() == nil
? "Not installed"
else
? "Installed"
endif

2) Also check if file exists with
? File( cFileXls )
by nageswaragunupudi
Fri Sep 17, 2021 9:25 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: GetExcelRange ERROR
Replies: 10
Views: 902

Re: GetExcelRange ERROR

Marc Venken wrote:Silvio, keep in mind that the sample is not killing the object, so exel is still in the taskbar. See into it...

Maybe that is a issue at your site..





Image


Can I send you a small test ? my mail is silvio_dot_falconi_at_gmail_dot_com
by Silvio.Falconi
Fri Sep 17, 2021 7:48 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: GetExcelRange ERROR
Replies: 10
Views: 902

Re: GetExcelRange ERROR

Silvio, keep in mind that the sample is not killing the object, so exel is still in the taskbar. See into it...

Maybe that is a issue at your site..
by Marc Venken
Fri Sep 17, 2021 2:54 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: GetExcelRange ERROR
Replies: 10
Views: 902

Re: GetExcelRange ERROR

Your sample is working here. Just a local file from myself in de exe folder. rest is the same
by Marc Venken
Fri Sep 17, 2021 2:51 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: GetExcelRange ERROR
Replies: 10
Views: 902
Next

Return to advanced search