Search found 1 match

by taoxl
Fri Aug 29, 2014 2:02 am
Forum: XLSReadWritwII 6
Topic: out of memory
Replies: 1
Views: 2017

out of memory

Hi when i add huge rows to the excel, xls raise an exception: "out of memory" here is my test code below: procedure TfrmMain.btnAdd1Click(Sender: TObject); var i : Integer; begin XLS.Version := xvExcel2007; try for i:=0 to 900000 do begin XLS[0].AsInteger[0,i] := i; end; except on e : Exce...