Page 1 of 1
Import Sheets from another Excelfile
Posted: Thu Sep 13, 2012 1:47 pm
by braune
Hello,
all the Excelfiles creates with XLSReadWriteII4 and i can read this files but i can't copy the Sheets from extern file.
Please help me...
function XLSReport_multi(Reports: TStrings): boolean;
var
i : integer;
XLSFrom : TXLSReadWriteII4;
XLSTo : TXLSReadWriteII4;
begin
Result := false;
try
XLSTo := TXLSReadWriteII4.Create(nil);
XLSFrom := TXLSReadWriteII4.Create(nil);
with XLSTo do try
Clear;
Version := xvExcel97;
FileName := 'c:\test.xls';
for i:=0 to Reports.Count-1 do begin
with Sheets.Add do begin
XLSFrom.Clear;
XLSFrom.Filename := Reports[i];
XLSFrom.Read;
// Here copy the first Sheet to created Sheet
....
end;
end;
Write;
Result := true;
finally
XLSFrom.Free;
free;
end;
except
On E: Exception do MessageBox(E.Messages);
end;
end;
BBCode only OFF???
Uwe Braune
Re: Import Sheets from another Excelfile
Posted: Fri Sep 14, 2012 7:06 am
by larsa
Hello
There is no method for copying sheets from external files.
Re: Import Sheets from another Excelfile
Posted: Fri Sep 14, 2012 7:59 am
by braune
Hello,
you wrote me 2006:
[quote]
... This will be added to a future upgrade ... and ...
The feature to copy sheets between components is on the to do list, but I can't tell when it will be ready.
[/quote]
... and now 2012 you wrote:
[quote]
There is no method for copying sheets from external files.
[/quote]
This is very unsatisfactory. I thought in version 4 works.
How can I copy the data without method?
Please help me urgently ...
Uwe Braune
Re: Import Sheets from another Excelfile
Posted: Sat Sep 15, 2012 9:41 am
by larsa
Hello
You can copy sheets cell by cell, something like this (untested):
for R := SrcSheet.FirstRow to SrcSheet.LastRow do begin
for C := SrcSheet.FirstCol to SrcSheet.LastCol do begin
DestSheet.AsVariant[C,R] := SrcSheet.AsVariant[C,R];
end;
end;
Re: Import Sheets from another Excelfile
Posted: Mon Sep 17, 2012 10:15 am
by braune
Hello,
Fine, this works.
But i need all data on the sheet - Formats, Charts, Printing Range an so on ...
Over OLE i do this:
[code]
function XLSReport_multi(Reports: TStrings; aToFile: string): boolean;
var
Excel : OleVariant;
CopyBook : OleVariant;
CopySheet : OleVariant;
WorkBook : OleVariant;
WorkSheet : OleVariant;
i : integer;
begin
Result := false;
try
if (Reports.Count>0) then begin
try
Excel := CreateOLEObject('Excel.Application');
Excel.Application.DisplayAlerts := False;
for i:=0 to Reports.Count-1 do begin
CopyBook := Excel.WorkBooks.Open(Reports[i]);
CopySheet := CopyBook.Sheets[1];
if (i=0) then begin
WorkBook := Excel.WorkBooks.Add;
WorkSheet := WorkBook.Sheets[1];
while (WorkBook.WorkSheets.Count>1) do
WorkBook.Sheets[WorkBook.WorkSheets.Count].Delete;
end;
CopySheet.Copy(WorkSheet);
CopyBook.Close;
end;
WorkBook.Sheets[WorkBook.WorkSheets.Count].Delete;
WorkBook.Sheets[1].Activate;
WorkBook.SaveAs(aToFile);
Result := true;
finally
Excel.Application.Quit;
Excel.Quit;
CopyBook := UnAssigned;
CopySheet := UnAssigned;
WorkBook := UnAssigned;
WorkSheet := UnAssigned;
end;
end;
except
ON E: Exception do DoErrMsg(E);
end;
end;
[/code]
Uwe Braune
Re: Import Sheets from another Excelfile
Posted: Tue Sep 18, 2012 8:33 am
by braune
... but I do not want to use OLE I bought XLSReadWriteII
Please help me
Uwe Braune
Re: Import Sheets from another Excelfile
Posted: Thu Sep 20, 2012 8:32 am
by braune
... no response?
Re: Import Sheets from another Excelfile
Posted: Thu Sep 20, 2012 11:10 pm
by larsa
Hello
Sorry, but this is not possible, and there is no easy fix for this.
Re: Import Sheets from another Excelfile
Posted: Fri Sep 21, 2012 6:41 am
by braune
Hello,
oh no!

Is there no way over a stream (XLSStream) or step by step.
... or can i hope in the next version gives a copysheet function?
Re: Import Sheets from another Excelfile
Posted: Sun Sep 30, 2012 11:42 am
by braune

no response???
Re: Import Sheets from another Excelfile
Posted: Mon Nov 26, 2012 10:29 am
by braune
Hello,
just wanted to ask again as the state of "Import Sheets from external Excelfile" is.