Install problem with 6.01.08 on Delphi 10.3

Questions and answers on how to use XLSReadWriteII 5.
Post Reply
a.menghini
Posts: 18
Joined: Thu Aug 26, 2010 7:26 am

Install problem with 6.01.08 on Delphi 10.3

Post 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
a.menghini
Posts: 18
Joined: Thu Aug 26, 2010 7:26 am

Re: Install problem with 6.01.08 on Delphi 10.3

Post by a.menghini »

Hi,
I solved the problem by deleting the files from the compilation. I hope it is the correct solution

Alberto.
Post Reply