Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Population an Excel Range with an array
Message
From
08/07/2013 03:36:10
 
 
To
08/07/2013 03:11: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:
01577940
Views:
67
>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
Gregory
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform