Search found 137 matches

by d3nton
Mon Apr 08, 2013 8:29 am
Forum: XLSReadWritwII 6
Topic: Hyperlinks[i].address does not return the correct value
Replies: 5
Views: 3704

Hyperlinks[i].address does not return the correct value

Hi! It seems that the address property of hyperlinks does not return a correct value if I read an xls (Excel 97) file which contains a hyperlink (XLSReadWrite 5.10.12). Please see example: lString returns always 'file:///' . var ExcelFile5 : TXLSReadWriteII5; lString: String; begin //creating file w...
by d3nton
Tue Mar 26, 2013 1:09 pm
Forum: XLSReadWritwII 6
Topic: Negative size values when exporting to 64bit (V5.10.08)
Replies: 6
Views: 4209

Re: Negative size values when exporting to 64bit (V5.10.08)

Hello

With V5.10.09 it seems to be vice versa.
On 64bit it works well but now I get a negative value if compiling the code above in 32bit.
by d3nton
Tue Mar 26, 2013 9:31 am
Forum: XLSReadWritwII 6
Topic: Negative size values when exporting to 64bit (V5.10.08)
Replies: 6
Views: 4209

Negative size values when exporting to 64bit (V5.10.08)

Hi! The following code produces negative values in the excel output file when compiling with 64bit: var ExcelFile5 : TXLSReadWriteII5; begin ExcelFile5 := TXLSReadWriteII5.Create(nil); ExcelFile5.Filename := 'D:\output.xlsx'; ExcelFile5.Sheets[0].AsFloat[0,0] := 2937958862; <- is -1357008434 in the ...
by d3nton
Mon Mar 25, 2013 8:25 am
Forum: XLSReadWritwII 6
Topic: Problem reading Excel97 files with version 5.10.06
Replies: 13
Views: 8287

Re: Problem reading Excel97 files with version 5.10.06

I can confirm this. The problem still exists.
Just tested with my code above.
by d3nton
Mon Mar 25, 2013 8:24 am
Forum: XLSReadWritwII 6
Topic: Hyperlinks to local paths do not work.
Replies: 2
Views: 2514

Re: Hyperlinks to local paths do not work.

Thank you. Works for XLSX files. Unforatunately the hyperllinks in xls files are still broken (no address is set): var ExcelFile5 : TXLSReadWriteII5; begin ExcelFile5 := TXLSReadWriteII5.Create(nil); ExcelFile5.Version := xvExcel97; ExcelFile5.Filename := 'D:\output.xls'; ExcelFile5.Sheets[0].MakeHy...
by d3nton
Fri Mar 22, 2013 2:52 pm
Forum: XLSReadWritwII 6
Topic: Hyperlinks to local paths do not work.
Replies: 2
Views: 2514

Hyperlinks to local paths do not work.

Hi! I tried to create hyperlinks with the following code using XLS ReadWrite 5.10.07: var ExcelFile5 : TXLSReadWriteII5; begin ExcelFile5 := TXLSReadWriteII5.Create(nil); ExcelFile5.Filename := 'D:\output.xlsx'; ExcelFile5.Sheets[0].MakeHyperlink(0,0,'C:\Windows', 'C:\Windows' ); ExcelFile5.Write; e...
by d3nton
Fri Mar 22, 2013 12:50 pm
Forum: XLSReadWritwII 6
Topic: Access violation when writing a xlsx file on 64bit
Replies: 5
Views: 4032

Access violation when writing a xlsx file on 64bit

Hello. I got an access violation when trying to execute the following code on 64bit (xlsReadWrite 5.10.07): var ExcelFile5 : TXLSReadWriteII5; begin ExcelFile5 := TXLSReadWriteII5.Create(nil); ExcelFile5.Filename := 'D:\output.xlsx'; ExcelFile5.Sheets[0].AsFloat[0, 0] := 10000000; ExcelFile5.Write; ...
by d3nton
Fri Mar 22, 2013 10:38 am
Forum: XLSReadWritwII 6
Topic: Problem reading Excel97 files with version 5.10.06
Replies: 13
Views: 8287

Re: Problem reading Excel97 files with version 5.10.06

unfortunately it does not seem to be fixed.
Same error in V 5.10.07.

regards d3nton
by d3nton
Tue Mar 19, 2013 10:24 am
Forum: XLSReadWritwII 6
Topic: Problem reading Excel97 files with version 5.10.06
Replies: 13
Views: 8287

Re: Problem reading Excel97 files with version 5.10.06

I can also reproduce this issue in Delphi. It throws an 'List index out of bound exception' in unit BIUFF_READII5.pas procedure TXLSReadII.RREC_COLINFO; line 1252. Delphi sample code: var ExcelFile5 : TXLSReadWriteII5; begin ExcelFile5 := TXLSReadWriteII5.Create(nil); ExcelFile5.Version := xvExcel97...
by d3nton
Tue Mar 19, 2013 8:02 am
Forum: XLSReadWritwII 6
Topic: EAccessViolation when changing FontColor for multiple cells
Replies: 5
Views: 3868

Re: EAccessViolation when changing FontColor for multiple cells

Thank you. The EAccessViolation issue seems to be fixed. But now I got a corrupted xls file with the code above. Opening the created xls file in Excel results in the following message: Protected view - 'Office has detected a problem with the file. Editing it may harm your computer. Click more for de...
by d3nton
Thu Mar 14, 2013 10:37 am
Forum: XLSReadWritwII 6
Topic: EAccessViolation when changing FontColor for multiple cells
Replies: 5
Views: 3868

Re: EAccessViolation when changing FontColor for multiple cells

Hi! Thank you! Works great. Unfortunately I have a similar problem when trying to convert multiple cells into date format. I get the same EAccessViolation. I know, I should not access the cells directly for formatting multiple cells but I don't find a function similar to the cmdformat which converts...
by d3nton
Wed Mar 13, 2013 1:18 pm
Forum: XLSReadWritwII 6
Topic: List Index out of bounce exception in ReadSheetCondFmt
Replies: 5
Views: 4003

Re: List Index out of bounce exception in ReadSheetCondFmt

Unfortunately the error seems not to be solved. With the code above (and the same excel file) I am getting a class Exception with message 'Row 0 Unknown Attribute "xmlns"'. An additional suggestion: It would be nice if XLSReadWrite would not raise an usual Exception (for the fErrorEvent or...
by d3nton
Wed Mar 13, 2013 12:37 pm
Forum: XLSReadWritwII 6
Topic: Adding multiple sheets to a xls file does not work.
Replies: 4
Views: 2986

Adding multiple sheets to a xls file does not work.

Hi! It seems that adding multiple sheets to a xls file does not work properly. Sample code: var ExcelFile : TXLSReadWriteII5; begin ExcelFile := TXLSReadWriteII5.Create(nil); ExcelFile.Filename := 'D:\output.xls'; ExcelFile.Version := Xc12Utils5.xvExcel97; ExcelFile.Add; ExcelFile.Add; ExcelFile.Add...
by d3nton
Tue Mar 12, 2013 11:04 am
Forum: XLSReadWritwII 6
Topic: Creating Pivot Tables
Replies: 1
Views: 1945

Creating Pivot Tables

Hi!

Is there a way to create pivot tables in XLSReadWrite?
If so, it would be nice if you could give me a small example how to do this.
Thanks in advance.