Page 1 of 1

Install problem with 6.01.08 on Delphi 10.3

Posted: Thu Jun 24, 2021 7:09 am
by a.menghini
Good morning,
I'm trying to install XLSReadWriteII6 on Delphi 10.3.
I created a new package by selecting all the .pas present in the SRC folder but when I go to compile it gives me the following error

[dcc32 Error] FrmColor.pas(29): E2003 Undeclared identifier: 'ecpTheme'

This is the code in FrmColor.pas that generates the error :

Code: Select all

function TfrmSelectColor.Execute(var AColor: TXc12Color): boolean;
begin
  ecpTheme.ExcelColor := AColor;   <== ERROR Undeclared identifier: 'ecpTheme'

  ShowModal;

  Result := ModalResult = mrOk;

  if Result then
    AColor := ecpTheme.ExcelColor;
end;
Since TfrmSelectColor is used in FormFormatChartItem how should I declare ecpTheme ?

...or how can I solve the problem ?

Thanks

Re: Install problem with 6.01.08 on Delphi 10.3

Posted: Thu Jun 24, 2021 9:03 am
by a.menghini
Hi,
I solved the problem by deleting the files from the compilation. I hope it is the correct solution

Alberto.