Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Population an Excel Range with an array
Message
De
08/07/2013 03:36:10
 
 
À
08/07/2013 03:11:01
Information générale
Forum:
Visual FoxPro
Catégorie:
COM/DCOM et OLE Automation
Versions des environnements
Visual FoxPro:
VFP 9 SP2
OS:
Windows Server 2012
Network:
Windows 2008 Server
Database:
MS SQL Server
Application:
Web
Divers
Thread ID:
01577886
Message ID:
01577940
Vues:
66
>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
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform