Search found 85 matches: getexcelrange

Return to advanced search

Find out the range of a excel-sheet

... nCol ):Value methode to read the first column to know how many records the are, and read the fist row , how many colums to import. Then I can use GetExcelRange() Is there a faster way to know which row is the first empty cell, and which column is the first empty one?
by Marc Vanzegbroeck
Thu Dec 05, 2019 6:19 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Find out the range of a excel-sheet
Replies: 4
Views: 411

Re: FW_ExcelToDBF - (2015) Import procedure from Excel not run

yes On xharbour run ok BUt on Harbour you made oRange := GetExcelRange(cFileXls , , @lOpened) and then Xbrowse(oRange) run ok I see all datas So, the problem is of Fw_ExcelToDbf() Please Maurizio try this testxbrowse(oRange) Function  testxbrowse(oRange)  ...
by Silvio.Falconi
Wed Nov 27, 2019 8:04 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FW_ExcelToDBF - (2015) Import procedure from Excel not run
Replies: 3
Views: 898

Re: GetExcelRange function

... = oBook:Worksheets:Count()FOR nFogli = 1 to nSheet    cSheetName = oBook:Worksheets(nFogli):Name()        oRange  := GetExcelRange(cFile, cSheetName , , @lOpened )...... 
by damianodec
Fri Aug 31, 2018 2:13 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: GetExcelRange function
Replies: 2
Views: 734

Re: GetExcelRange function

Code: Select all  Expand view
FOR i = 1 TO oExcel:Sheets:Count
    oExcel:Sheets( i ):Select()
    // do something with this sheet
NEXT


EMG
by Enrico Maria Giordano
Fri Aug 31, 2018 9:21 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: GetExcelRange function
Replies: 2
Views: 734

GetExcelRange function

hi, I know that GetExcelRange function works with this parameters ( cBook, cSheet, acRange, lOpened ) function defaults to ActiveWorkBook, ActiveSheet and UsedRange, if the corresponding parameters are not specified. I Have a lot ...
by damianodec
Fri Aug 31, 2018 7:26 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: GetExcelRange function
Replies: 2
Views: 734

Re: TGet Unicode problem

Hi Mr. Rao, You are right if we set FW_SetUnicode( .t. ). but there is also another problem. I can not open the selected file in GetExcelRange() function. File(cSelectedfile) is also says .f. I have found a workaround like this. It is funny but it works. cFileName := MyUnicodeToAnsi(cGetFile32(oData:cDosya))...FUNCTION ...
by Horizon
Mon Aug 27, 2018 6:05 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TGet Unicode problem
Replies: 6
Views: 1021

Re: New FTDN May 2018 (FWH 18.05)

... use FWH runtime, #include "vrd.ch" should be replaced with #include "easyrep.ch" in the application programs. * Fix: functions GetExcelRange() and GetExcelBook() in olefuncs.prg. These functions were unable to open files on network. Fixed April 2018 (revised build) ========================== ...
by Antonio Linares
Sun Jul 22, 2018 5:01 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN May 2018 (FWH 18.05)
Replies: 1
Views: 2797

New FTDN May 2018 (FWH 18.05)

... use FWH runtime, #include "vrd.ch" should be replaced with #include "easyrep.ch" in the application programs. * Fix: functions GetExcelRange() and GetExcelBook() in olefuncs.prg. These functions were unable to open files on network. Fixed
by Antonio Linares
Sat Jul 14, 2018 4:14 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN May 2018 (FWH 18.05)
Replies: 1
Views: 2797

Re: GetExcelRange function

Fixed in FWH 18.05
by nageswaragunupudi
Sat Jul 14, 2018 1:03 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: GetExcelRange function
Replies: 11
Views: 949

Re: GetExcelRange function

Great!

EMG
by Enrico Maria Giordano
Tue Jul 10, 2018 1:48 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: GetExcelRange function
Replies: 11
Views: 949

Re: GetExcelRange function

in Forum I found this thread: http://forums.fivetechsupport.com/viewtopic.php?f=3&t=30117&p=172039&hilit=getexcelrange#p172025 and I try this:         oExcel   := ExcelObj()        oBook    := oExcel:WorkBooks:Open( cPath+aFile[nZ] )    ...
by damianodec
Tue Jul 10, 2018 1:38 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: GetExcelRange function
Replies: 11
Views: 949

Re: GetExcelRange function

ok, thank you, I'm waiting Mr. Rao
by damianodec
Tue Jul 10, 2018 1:15 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: GetExcelRange function
Replies: 11
Views: 949

Re: GetExcelRange function

So you have to ask Rao, sorry. I've never used those functions.

EMG
by Enrico Maria Giordano
Tue Jul 10, 2018 1:13 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: GetExcelRange function
Replies: 11
Views: 949

Re: GetExcelRange function

.F. is the value
by damianodec
Tue Jul 10, 2018 1:00 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: GetExcelRange function
Replies: 11
Views: 949

Re: GetExcelRange function

It's fine. Then check lOpened value:

Code: Select all  Expand view
? lOpened


EMG
by Enrico Maria Giordano
Tue Jul 10, 2018 12:50 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: GetExcelRange function
Replies: 11
Views: 949
PreviousNext

Return to advanced search