Hello,
Latest version gives me problems again inserting images! Previous version it works well.
Regards,
RJ
Search found 17 matches
- Fri Feb 07, 2014 9:22 pm
- Forum: XLSReadWritwII 6
- Topic: Problem with images
- Replies: 10
- Views: 6357
- Tue Jan 21, 2014 9:17 pm
- Forum: XLSReadWritwII 6
- Topic: "floating point division by zero" with AutoWidthCols
- Replies: 18
- Views: 11945
Re: "floating point division by zero" with AutoWidthCols
Hello,
I downloaded the latest version and removed all xlsread*.* files after deinstallation. Then I installed version 5.20.13 and now auto width and images word fine again. it must be some old source in my debug/ release dir. Strange but it works for me. So happy again!!
Regards,
RJ
I downloaded the latest version and removed all xlsread*.* files after deinstallation. Then I installed version 5.20.13 and now auto width and images word fine again. it must be some old source in my debug/ release dir. Strange but it works for me. So happy again!!
Regards,
RJ
- Fri Jan 17, 2014 9:00 pm
- Forum: XLSReadWritwII 6
- Topic: "floating point division by zero" with AutoWidthCols
- Replies: 18
- Views: 11945
Re: "floating point division by zero" with AutoWidthCols
I got the same problem with Delphi Xe5.
Also the same error when inserting an image.
Regards,
RJvV
Also the same error when inserting an image.
Regards,
RJvV
- Mon May 06, 2013 1:57 pm
- Forum: XLSReadWritwII 6
- Topic: Delphi Xe4
- Replies: 2
- Views: 2224
Re: Delphi Xe4
I see we can download XLS for Delphi Xe4!
- Mon Apr 29, 2013 8:11 pm
- Forum: XLSReadWritwII 6
- Topic: Delphi Xe4
- Replies: 2
- Views: 2224
Delphi Xe4
Hello Lars,
When can we expect a version that runs under Delphi xe4?
Regards,
Robert Jan van Vliet
When can we expect a version that runs under Delphi xe4?
Regards,
Robert Jan van Vliet
- Sun Mar 24, 2013 1:44 pm
- Forum: XLSReadWritwII 6
- Topic: Access violation when writing a xlsx file on 64bit
- Replies: 5
- Views: 4293
Re: Access violation when writing a xlsx file on 64bit
I got this problem too.
The exception comes from this routine in xpgPXML:
procedure TXpgWriteXML.AddAttribute(const AName, AValue: AxUCString);
begin
AddAttr(AName);
AddAttr('="');
CopyToBufUTF8(AValue);
AddAttr('" ');
end;
The exception comes from this routine in xpgPXML:
procedure TXpgWriteXML.AddAttribute(const AName, AValue: AxUCString);
begin
AddAttr(AName);
AddAttr('="');
CopyToBufUTF8(AValue);
AddAttr('" ');
end;
- Sun Mar 10, 2013 7:49 pm
- Forum: XLSReadWritwII 6
- Topic: 2 problems with 5.10.03
- Replies: 5
- Views: 3998
Re: 2 problems with 5.10.03
Just download .02 and you get the .03 version!!
Just some old tekst.

- Fri Mar 08, 2013 9:24 am
- Forum: XLSReadWritwII 6
- Topic: 2 problems with 5.10.03
- Replies: 5
- Views: 3998
Re: 2 problems with 5.10.03
Great!
- Wed Mar 06, 2013 8:46 pm
- Forum: XLSReadWritwII 6
- Topic: 2 problems with 5.10.03
- Replies: 5
- Views: 3998
2 problems with 5.10.03
I am having 2 problems with the latest version:
1) In xvExcel97 the lastrow property doesnot got a value anymore;
2) In 64-bits I get the error that property Directwrite doesnot excist
Regards,
Robert Jan van Vliet
1) In xvExcel97 the lastrow property doesnot got a value anymore;
2) In 64-bits I get the error that property Directwrite doesnot excist
Regards,
Robert Jan van Vliet
- Mon Mar 04, 2013 9:09 pm
- Forum: XLSReadWritwII 6
- Topic: Autosize columns version 5 not correct
- Replies: 3
- Views: 3373
Re: Autosize columns version 5 not correct
Lars I sent you mine excel-file.
- Mon Mar 04, 2013 7:44 am
- Forum: XLSReadWritwII 6
- Topic: Autosize columns version 5 not correct
- Replies: 3
- Views: 3373
Autosize columns version 5 not correct
The auto sizing of columns is not working correct in version 5. Anybody found a solution?
- Mon Mar 04, 2013 7:25 am
- Forum: XLSReadWritwII 6
- Topic: XlsReadwriteii5 migration from 4
- Replies: 1
- Views: 2790
Re: XlsReadwriteii5 migration from 4
For anyone who has the same problem. I found the solution in de defaultformat. Very simple and fast!! You only have to change the defaultformat before writing the cells. Just an example how simple it is: // Create format F2 XLS.CmdFormat.BeginEdit(Nil); XLS.CmdFormat.Fill.BackgroundColor.RGB := $FF1...
- Sat Mar 02, 2013 5:31 pm
- Forum: XLSReadWritwII 6
- Topic: Default format example not working
- Replies: 4
- Views: 4186
- Fri Mar 01, 2013 5:38 pm
- Forum: XLSReadWritwII 6
- Topic: Default format example not working
- Replies: 4
- Views: 4186
Re: Default format example not working
It is just your example. I excepted to see 3 formats in the excelfile, but I only see the green color format[color=$10F040][/color]: // Create first default format. // The sheet parameter of BeginFormat is Nil, as it's not assigned to any // particular woeksheet. XLS.CmdFormat.BeginEdit(Nil); XLS.Cm...
- Fri Mar 01, 2013 12:58 pm
- Forum: XLSReadWritwII 6
- Topic: Default format example not working
- Replies: 4
- Views: 4186
Default format example not working
I try to implement the fastest method to format cells, but the example 'formatcells' shows only the format that is created al last. I moved 'F3' to the front and all the cells are not yellow anymore but red. So it donot listen to the if statements. That is a pitty because this method looks really go...