Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
OLE to EXCEL faster?
Message
From
23/11/1998 10:44:03
 
 
To
All
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Title:
OLE to EXCEL faster?
Miscellaneous
Thread ID:
00160480
Message ID:
00160480
Views:
66
I am writing directly to EXCEL sheet. This works fine, but it is extremely slow. Code follows:

KoeObj = CreateObject('Excel.Application')
KoeObj.Visible = .T.

KoeObj.Workbooks.Add
KoeBook = KoeObj.ActiveWorkbook
KoeSheet = Koebook.Activesheet

Dimension Test(5)
Test(1)=1
Test(2)=2
Test(3)=3
Test(4)=4
Test(5)=5

For I = 1 to 5
KoeSheet.Cells(1,I) = Test(I)
Endfor

- So, can anyone find a way to write the whole array into a range in EXCEL sheet, in just one command? The FOR loop is the slow one.

Thanks in advance..
MANU
Next
Reply
Map
View

Click here to load this message in the networking platform