Search found 12 matches

by braune
Mon Apr 09, 2018 9:51 am
Forum: XLSReadWriteII 3/4/5
Topic: XLSSuit5 XLSM Files
Replies: 1
Views: 6009

XLSSuit5 XLSM Files

Hi Lars,

i have a XLSM file with charts and macros.

When i do this

Code: Select all

XLS.LoadFromFile('c:\test.xlsm');
XLS[0].AsFloat[16,6] := 6;
XLS.Write;
the file corrupted.

Can you help me
by braune
Tue May 21, 2013 7:29 am
Forum: XLSReadWritwII 6
Topic: DirectRead Excel97 OnReadCell not Fired
Replies: 4
Views: 2296

Re: DirectRead Excel97 OnReadCell not Fired

... and

ACell.AsString on a float cell get a false result
by braune
Tue May 21, 2013 7:10 am
Forum: XLSReadWritwII 6
Topic: DirectRead Excel97 OnReadCell not Fired
Replies: 4
Views: 2296

Re: DirectRead Excel97 OnReadCell not Fired

Hello

thanks to fix the event, but the function ColRowToRefStr(ACell.Col,ACell.Row) get following for xvExcel97:

A Excel table with 2 columns:

A1, B1, C1, D1, E1, F1,... ???

I think: A1, B1, A2, B2, A3, B3,... is right

under xvExcel2007 its right
by braune
Fri May 17, 2013 12:31 pm
Forum: XLSReadWritwII 6
Topic: DirectRead Excel97 OnReadCell not Fired
Replies: 4
Views: 2296

DirectRead Excel97 OnReadCell not Fired

When read Excel97 file the OnReadCell Event not fired.
Excel2007 files works fine.
Have testet with ReadDirect Sample with Version xvExcel97.

Delphi2007
Windows XP SP3
ExcelReadWriteII V5 .10.21

Thanks
by braune
Mon Nov 26, 2012 10:29 am
Forum: XLSReadWriteII 3/4/5
Topic: Import Sheets from another Excelfile
Replies: 10
Views: 12024

Re: Import Sheets from another Excelfile

Hello,
just wanted to ask again as the state of "Import Sheets from external Excelfile" is.
by braune
Sun Sep 30, 2012 11:42 am
Forum: XLSReadWriteII 3/4/5
Topic: Import Sheets from another Excelfile
Replies: 10
Views: 12024

Re: Import Sheets from another Excelfile

:cry: no response???
by braune
Fri Sep 21, 2012 6:41 am
Forum: XLSReadWriteII 3/4/5
Topic: Import Sheets from another Excelfile
Replies: 10
Views: 12024

Re: Import Sheets from another Excelfile

Hello,

oh no! :cry: Is there no way over a stream (XLSStream) or step by step.
... or can i hope in the next version gives a copysheet function?
by braune
Thu Sep 20, 2012 8:32 am
Forum: XLSReadWriteII 3/4/5
Topic: Import Sheets from another Excelfile
Replies: 10
Views: 12024

Re: Import Sheets from another Excelfile

... no response?
by braune
Tue Sep 18, 2012 8:33 am
Forum: XLSReadWriteII 3/4/5
Topic: Import Sheets from another Excelfile
Replies: 10
Views: 12024

Re: Import Sheets from another Excelfile

... but I do not want to use OLE I bought XLSReadWriteII :P

Please help me

Uwe Braune
by braune
Mon Sep 17, 2012 10:15 am
Forum: XLSReadWriteII 3/4/5
Topic: Import Sheets from another Excelfile
Replies: 10
Views: 12024

Re: Import Sheets from another Excelfile

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; Wor...
by braune
Fri Sep 14, 2012 7:59 am
Forum: XLSReadWriteII 3/4/5
Topic: Import Sheets from another Excelfile
Replies: 10
Views: 12024

Re: Import Sheets from another Excelfile

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....
by braune
Thu Sep 13, 2012 1:47 pm
Forum: XLSReadWriteII 3/4/5
Topic: Import Sheets from another Excelfile
Replies: 10
Views: 12024

Import Sheets from another Excelfile

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 XLS...