Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Copying from one worksheet to another with VFP
Message
From
20/05/2003 08:13:31
 
 
To
All
General information
Forum:
Visual FoxPro
Category:
COM/DCOM and OLE Automation
Title:
Copying from one worksheet to another with VFP
Miscellaneous
Thread ID:
00790369
Message ID:
00790369
Views:
55
Hi All,

I have 2 excel files and I need to copy some of the contents from the first to the second using code in my VFP application.

For some reason when I run it I receive error messages such as "Invalid Index" or "Call was rejected by the callee".

Could any one help?

The code I used was:

oexcel = CREATEOBJECT("Excel.Application")

thefile = FULLPATH('file1.xls')
oexcel.workbooks.OPEN(thefile)

thefile = ALLT('file2.xls')
oexcel.workbooks.OPEN(thefile)

oexcel.worksheets("file1").RANGE("A1:B100").COPY(oexcel.worksheets("file2").RANGE("B1:C100"))

Here I got stuck. It simply refused to do the job with all kind of (the above-mentioned) excuses.

Thanks in advance,

Jonathan
Next
Reply
Map
View

Click here to load this message in the networking platform