This kind of "WARNING. Duplicate resource(s): File resource kept resource discarded" appeared me to Delphi 7 lately, when I was trying to re-install DBISAM database component to the palette.
File D:\DELPHI\DBISAM\db324d6d.res resource kept; file
D:\DELPHI\DBISAM\db324d6d.res resource discarded.
Type 14 (ICON GROUP), ID MAINICON:
As you can see above, when exactly this RES related Delphi error situation appears there are two identical notices to the same resource, in here to "D:\DELPHI\DBISAM\db324d6d.res" file.
I first thought there are resources from two vendor packages conflicting, so I ripped and ripped down the other installed components. After 4 hours or so unfruitful struggling, I finally found that there had appeared another Resource reference to DBISAM DPK package file:
package db324d6d;
{$R *.res}
{$R 'db324d6d.res'}
...
Now I remembered that DBIsam had about week ago or so complaint something about "missing .RES resource file". I routinely checked, and made sure the line existed in DPK file and RES file was on disk.
At that point I probably have somehow added that second line to the DPK file, yet got the Package built, and I was able to work with it the whole week.
Now that extra line hit back, and hit it hard . I just love there 4 hour Saturday struggles.
Shortly, how to fix it: Remove the latter of those resource lines. The error appears while they both will point to same resource.
So, only this should be left:
package db324d6d;
{$R *.res}
...
Phew, I hope this will help someone else.