Access Violation TXLSMMURebuildVector.WriteVector 64Bits
Posted: Tue Dec 23, 2014 11:55 am
Hi
We get Access Violation compiling 64 bits in TXLSMMURebuildVector.WriteVector
No problem in 32 bits
Any idea what going On?
I had it on:
as well as on
On the Apply method
Eric
We get Access Violation compiling 64 bits in TXLSMMURebuildVector.WriteVector
No problem in 32 bits
Code: Select all
if n > 0 then begin
pVect^ := XVECT_EQCOUNT_EMPTY or n;
Inc(pVect)
end;
I had it on:
Code: Select all
FSheet.AsString[FFirstColumn + 1, FCurrentRow] := ASettingValueA;
Code: Select all
ExcelObject.CmdFormat.BeginEdit(ExcelObject[LSheetIndex]);
ExcelObject.CmdFormat.Font.Style := [];
ExcelObject.CmdFormat.Font.Underline := xulSingle;
ExcelObject.CmdFormat.Font.Color.RGB := RGB($FF, $00, 00);
ExcelObject.CmdFormat.Apply(FFirstColumn + 1, FCurrentRow, FFirstColumn + 1, FCurrentRow);
Eric