I'm having a project that has the following resource file directives:
{$R *.DFM}
{$R UAC.res}
After I've copied a portion of the project into another folder, I get the following error after compiling:
"[DCC Error] E2161 Warning: Duplicate resource: Type 24 (user-defined), ID 1; File D: \ Project \ EmailRB \ EMAILRB.res resource kept; file UAC.res resource discarded. "
EMAILRB.res
is created when compiling the project and UAC.res
, it was a file that I created to work around a Windows UAC limitation.
How do I solve this problem?