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;
...or how can I solve the problem ?
Thanks