Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Population an Excel Range with an array
Message
 
 
To
08/07/2013 17:21:01
General information
Forum:
Visual FoxPro
Category:
COM/DCOM and OLE Automation
Environment versions
Visual FoxPro:
VFP 9 SP2
OS:
Windows Server 2012
Network:
Windows 2008 Server
Database:
MS SQL Server
Application:
Web
Miscellaneous
Thread ID:
01577886
Message ID:
01577984
Views:
69
Check http://www.berezniker.com/content/pages/visual-foxpro/excel-finding-last-row-column-or-cell

>Gregory
>Good solution.
>Suppose the worksheet had an indeterminate number of rows > 5K?
>How would you establish the range?
>
>
>>>Thanks to all contributors this great thread.
>>>
>>>This is of general interest and useful to a lot of people IMHO:)
>>>
>>>By the way is there a trick to do just the opposite? i-e feed a table-like set of MS-Excel cells as a VFP array in order to avoid cell-per-cell parsing when downloading the content of a heavy sheets via com (I am not discussing ADO or ODBC here).
>>>
>>>François
>>
>>Sure - see message#1519015
>>
>>
>>	local obj, sheetObj
>>	obj = createobject('Excel.Application')
>>	=m.obj.workbooks.Open('D:\tmp\1.xlsx')
>>	sheetObj= m.obj.WorkBooks(1).Sheets(1)
>>	
>>	local aa[1]
>>	aa = m.sheetObj.Range(m.sheetObj.Cells(1,1), m.sheetObj.Cells(2,5)).Value
>>	
>>	sheetObj= null
>>	=m.obj.Quit()
>>	obj = null
>>	
>>	assert .f. && look in the debugger
>>
--sb--
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform