Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Population an Excel Range with an array
Message
De
08/07/2013 05:28:52
 
 
À
08/07/2013 03:36:10
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:
01577946
Vues:
57
Have been getting some "manually corrected" sheets lately... that tiny bit of code looks as if it might be an answer to a question I have not asked yet ;-)

>>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
>
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform