2
I am with a project that has the following resource file directives:
{$R *.DFM}
{$R UAC.res}
After I copied a part of the project into another folder, it presents me with the following error after compiling:
"[DCC Error] E2161 Warning: Duplicate Resource: Type 24 (user-defined) ID 1; File D: Emailrb Project EMAILRB.res Resource Kept; file UAC.res Resource discarded."
EMAILRB.res
is created by compiling the project and UAC.res
, was a file I created to bypass a Windows UAC limitation.
How do I solve this problem?
It is likely that somewhere in the project the directive of
{$R *.res}
then he would be informing you that theUAC.res
this duplicate.– Junior Moreira