Search found 82 matches

by Guest
Wed May 02, 2007 11:10 pm
Forum: XLSReadWriteII 3/4/5
Topic: ABS function in complex formula
Replies: 7
Views: 5397

Hello,

Help me!!!!

Cris
by Guest
Fri Apr 27, 2007 11:32 am
Forum: XLSReadWriteII 3/4/5
Topic: ABS function in complex formula
Replies: 7
Views: 5397

Hello,

Get the latest update of link:


http://www.axolot.com/components/f_downloadreg.htm
by Guest
Thu Apr 26, 2007 5:34 pm
Forum: XLSReadWriteII 3/4/5
Topic: ABS function in complex formula
Replies: 7
Views: 5397

Hello,

This same problem occur with me ("wrong number of arguments for function ABS"), but I'm using a version 3.01.01 and is occur on unit XLSFuncEval2 and I'm using the formula -> (valor_411-ABS(valor_412))
by Guest
Wed Apr 18, 2007 1:02 pm
Forum: XLSReadWriteII 3/4/5
Topic: Access Violation in TCellStorage.CalcDimensions
Replies: 4
Views: 3743

larsa wrote:Hello

Yes, you where right. I have found the problem now. The fix will be included in the next update.


Lars Arvidsson
-----
Hello Lars Arvidsson,

I have the same problem with version 3.
Can you already tell when the bugfixed version will be available?

Clemens Lehnert
by Guest
Mon Apr 16, 2007 6:56 am
Forum: XLSReadWriteII 3/4/5
Topic: Pivot table
Replies: 1
Views: 2454

Pivot table

Hello,

Is it possible to use the pivot table with XLSReadWrite III 3.0 ? :D

best regards,
Raf
by Guest
Sat Apr 07, 2007 6:47 am
Forum: XLSReadWriteII 3/4/5
Topic: How to add ComboBoxes properly?
Replies: 2
Views: 3224

How to add ComboBoxes properly?

Hello!

I try to add ComboBox, here is my code:

Code: Select all

uses ControlObj2;

 with XLS.Sheets[0].ControlsObjects.ComboBoxes.Add do begin
   SourceArea := 'A6:A9';
   DestCell := 'B2';
 end;
When I am running the .exe-file I get an error: 'Unknown SBS formula'.
What's wrong?
Could you post a code sample?
by Guest
Wed Apr 04, 2007 7:28 am
Forum: XLSReadWriteII 3/4/5
Topic: Slow write
Replies: 1
Views: 2503

Slow write

I compile simple test program with demo-version 3.01.01a. ... XLS.FileName := 'test.xls'; XLS.Read; XLS.Write; ... File size is > 1Mb, with 15 or more worksheets. Read from file is very fast, < 1sec Write to file is very-very-very slow, > 2min!!! Why? If file contains formulas in some cells, result ...
by Guest
Tue Apr 03, 2007 7:11 pm
Forum: XLSReadWriteII 3/4/5
Topic: Formula with external reference
Replies: 1
Views: 2382

Formula with external reference

How to read Formula in cell with reference on external xls-file?
AsFormula[col, row] returns
''??..\..\..\..\..\??..\..\..\..\..\..\?..\..\..\..\..\..\..\..\?..\?..\..\..\??..\..\..\..\..\..\..\..\..\..\?..\..\..\..\..\..\..\..\..\..\..\..\..\?..\..\..\???'#0'Sheet1'!$F$35'
by Guest
Tue Apr 03, 2007 2:34 pm
Forum: XLSReadWriteII 3/4/5
Topic: Read Excel cell and write to text with unicode ?
Replies: 3
Views: 3464

Thank for reply

But can you help me a example how to done that problem.
by Guest
Tue Apr 03, 2007 12:35 pm
Forum: XLSReadWriteII 3/4/5
Topic: Installation Problem XLSReadWriteII 3.0
Replies: 2
Views: 3159

Installation Problem XLSReadWriteII 3.0

Hello.
I try to test XLSReadWriteII 3.0 (testpackage).
I cannot install the package on our delphi 6.0
because we have another package which also
uses the ZLib (xtradev for Reportbuilder).

Any ideas?

thanks
mba-software
by Guest
Fri Mar 30, 2007 1:49 pm
Forum: XLSReadWriteII 3/4/5
Topic: Read Excel cell and write to text with unicode ?
Replies: 3
Views: 3464

Read Excel cell and write to text with unicode ?

hi i need read excel cell then write to a text file with unicode. my procedure here : procedure ConvertToXML(sheetindex:Integer;xlsfile:String;outfile:String); var XLS:TXLSReadWriteII2; col,row:integer; ws:TStringList; begin XLS:=TXLSReadWriteII2.Create(nil); XLS.Filename:=xlsfile; XLS.Read; ws:=TSt...
by Guest
Fri Mar 30, 2007 7:42 am
Forum: XLSReadWriteII 3/4/5
Topic: CopyColumns with cell value
Replies: 2
Views: 2965

Thanks, Larsa

I copy first with DoCopyCells as False, then use CopyCells, but only formulas are copied instead of values of formula... :(
by Guest
Wed Mar 28, 2007 5:22 pm
Forum: XLSReadWriteII 3/4/5
Topic: CopyColumns with cell value
Replies: 2
Views: 2965

CopyColumns with cell value

Hello!

I'd like to copy columns from one sheet to other with formula in cells but copy only value of formula.

I use 'CopyColumns(SrcSheet, Col1, Col2, DestSheet, DestCol: integer; DoCopyCells: boolean = True)' but unsuccessfully.
Please, help me.

Thanks!
by Guest
Wed Mar 14, 2007 10:57 am
Forum: XLSReadWriteII 3/4/5
Topic: restrict printing area
Replies: 4
Views: 3257

Hello! Why at opening a file there is a mistake? xls.Filename := 'c:\1.xls'; xls.Sheets[0].Name := 'A'; with xls.InternalNames.Add do begin BuiltInName := bnPrintArea; Definition := 'A!$D$4:$G$10'; end; xls.Sheets.Add; xls.Sheets[1].Name := 'S'; with xls.InternalNames.Add do begin BuiltInName := bnP...
by Guest
Wed Mar 07, 2007 4:30 pm
Forum: XLSReadWriteII 3/4/5
Topic: Access Violation in TCellStorage.CalcDimensions
Replies: 4
Views: 3743

Hi Lars, Just getting back into this issue... I did find the problem and can recreate it. It appears when you delete the default worksheet that is automatically created. This code will indeed cause that access violation in v3: with TXLSReadWriteII2.Create(Self) do try Sheets.Add.Name := 'test'; Shee...